CF820A.Mister B and Book Reading

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Mister B once received a gift: it was a book about aliens, which he started read immediately. This book had cc pages.

At first day Mister B read v0v_{0} pages, but after that he started to speed up. Every day, starting from the second, he read aa pages more than on the previous day (at first day he read v0v_{0} pages, at second — v0+av_{0}+a pages, at third — v0+2av_{0}+2a pages, and so on). But Mister B is just a human, so he physically wasn't able to read more than v1v_{1} pages per day.

Also, to refresh his memory, every day, starting from the second, Mister B had to reread last ll pages he read on the previous day. Mister B finished the book when he read the last page for the first time.

Help Mister B to calculate how many days he needed to finish the book.

输入格式

First and only line contains five space-separated integers: cc , v0v_{0} , v1v_{1} , aa and ll ( 1<=c<=10001<=c<=1000 , 0<=l<v_{0}<=v_{1}<=1000 , 0<=a<=10000<=a<=1000 ) — the length of the book in pages, the initial reading speed, the maximum reading speed, the acceleration in reading speed and the number of pages for rereading.

输出格式

Print one integer — the number of days Mister B needed to finish the book.

输入输出样例

  • 输入#1

    5 5 10 5 4
    

    输出#1

    1
    
  • 输入#2

    12 4 12 4 1
    

    输出#2

    3
    
  • 输入#3

    15 1 100 0 0
    

    输出#3

    15
    

说明/提示

In the first sample test the book contains 55 pages, so Mister B read it right at the first day.

In the second sample test at first day Mister B read pages number 141-4 , at second day — 4114-11 , at third day — 111211-12 and finished the book.

In third sample test every day Mister B read 11 page of the book, so he finished in 15 days.

首页