首页 > 代码库 > Codeforces Round #421 A
Codeforces Round #421 A
A. Mister B and Book Reading
题意:给你一本c页的数,第一天读v0页,以后每天读 的页数比前一天多a页(v0+a,v0+2a,v0+3a), 但是每天读的页数不超过v1页,且从第二天起,每天要从前一天的后 l 页读起(也就是每天都要将前一天的后l页再读一遍),求多少天可以读完这本数
思路:xjb模拟
AC代码:
#include "iostream" #include "string.h" #include "stack" #include "queue" #include "string" #include "vector" #include "set" #include "map" #include "algorithm" #include "stdio.h" #include "math.h" #define ll long long #define bug(x) cout<<x<<" "<<"UUUUU"<<endl; #define mem(a) memset(a,0,sizeof(a)) using namespace std; const int N=1e5+100; int main(){ int c,v0,v1,a,l; cin>>c>>v0>>v1>>a>>l; int ans=0,s=0,k=v0; while(c>s){ if(ans!=0) s-=l; ans++; s+=k; k+=a; if(k>v1)k=v1; } cout<<ans<<endl; return 0; } /* 5 5 10 5 4 12 4 12 4 1 15 1 100 0 0 */
Codeforces Round #421 A
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。