当前位置:网站首页>Noi / 1.5 37: mercenaries
Noi / 1.5 37: mercenaries
2022-07-05 15:35:00 【Graylan_】
describe
The maximum strength of mercenaries is M, The initial physical strength value is 0、 The combat effectiveness is N、 Have X An energy element .
When a mercenary's stamina is just M when , Before you can participate in a M Days of combat , At the end of the battle period, the physical strength will be 0. In the same combat period , Mercenaries fight every continuous battle n God , Combat effectiveness will rise 1 spot ,n For the combat effectiveness at the beginning of the current combat period .
After a combat period , Mercenaries need to use several energy elements to maximize their physical strength M, To participate in the next combat period . The physical strength restored by each energy element does not exceed the current combat effectiveness . Each energy element can only be used once .
Excuse me, : What is the maximum combat effectiveness of mercenaries .
Input
A line consists of three integers M、N、X, Two adjacent integers are separated by a single space .M、N、X No more than 10000 The positive integer .
Output
Output an integer , For the maximum combat effectiveness of mercenaries .
The sample input
5 2 10
Sample output
6
Problem analysis :
The combat effectiveness of soldiers is continuously increased through circulation , Set an intermediate value t Indicates that after the cycle ends , The greatest combat power of soldiers , When x<t,
namely x-t<0, The capability element is 0, Out of the loop , Finally, keep using n Record the change of value , In order to obtain the maximum combat power
Source code :
#include <iostream>
using namespace std;
int main()
{
int m,n,x,t;
cin>>m>>n>>x;
while(x>0)
{
t=m/n;
if(m%n!=0)
t++;
if(x<t)
break;
x-=t;
t=m/n;
n+=t;
}
cout<<n;
return 0;
}边栏推荐
猜你喜欢

I spring web upload

Example of lvgl display picture

Dark horse programmer - software testing -10 stage 2-linux and database -44-57 why learn database, description of database classification relational database, description of Navicat operation data, de

当代人的水焦虑:好水究竟在哪里?

【简记】解决IDE golang 代码飘红报错

Bugku cyberpunk

1330:【例8.3】最少步数

Talk about your understanding of microservices (PHP interview theory question)

Ctfshow web entry explosion

Advanced level of static and extern
随机推荐
Leetcode: Shortest Word Distance II
Common PHP interview questions (1) (written PHP interview questions)
超越PaLM!北大碩士提出DiVeRSe,全面刷新NLP推理排行榜
百亿按摩仪蓝海,难出巨头
Cartoon: what are the attributes of a good programmer?
Can I pass the PMP Exam in 20 days?
Go language programming specification combing summary
Cartoon: programmers don't repair computers!
sql server char nchar varchar和nvarchar的区别
CSRF, XSS science popularization and defense
Aike AI frontier promotion (7.5)
ICML 2022 | explore the best architecture and training method of language model
go学习 ------jwt的相关知识
Transfer the idea of "Zhongtai" to the code
Bugku alert
MySQL----函数
Xiao Sha's arithmetic problem solving Report
qt creater断点调试程序详解
SQL Server learning notes
Install PHP extension spoole