码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #421 A

时间:2017-06-29 00:57:19      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:string   contest   pac   cto   第一天   class   target   eof   int   

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

标签:string   contest   pac   cto   第一天   class   target   eof   int   

原文地址:http://www.cnblogs.com/max88888888/p/7091908.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!