cf——236——A. Nuts

来源:互联网 发布:乐高 机器人 编程 编辑:程序博客网 时间:2024/05/21 08:38

You have a nuts and lots of boxes. The boxes have a wonderful feature: if you put x (x ≥ 0) divisors (the spacial bars that can divide a box) to it, you get a box, divided into x + 1 sections.

You are minimalist. Therefore, on the one hand, you are against dividing some box into more than k sections. On the other hand, you are against putting more than v nuts into some section of the box. What is the minimum number of boxes you have to use if you want to put all the nuts in boxes, and you have b divisors?

Please note that you need to minimize the number of used boxes, not sections. You do not have to minimize the number of used divisors.

Input

The first line contains four space-separated integers kabv (2 ≤ k ≤ 10001 ≤ a, b, v ≤ 1000) — the maximum number of sections in the box, the number of nuts, the number of divisors and the capacity of each section of the box.

Output

Print a single integer — the answer to the problem.

Sample test(s)
input
3 10 3 3
output
2
input
3 10 1 3
output
3
input
100 100 1 1000
output
1
Note

In the first sample you can act like this:

  • Put two divisors to the first box. Now the first box has three sections and we can put three nuts into each section. Overall, the first box will have nine nuts.
  • Do not put any divisors into the second box. Thus, the second box has one section for the last nut.

In the end we've put all the ten nuts into boxes.

#include<iostream>#include <cstring>#include <algorithm>#include <cstdio>using namespace std;int main(){    int k,a,b,v;    while(cin>>k>>a>>b>>v)    {        int count=0;        if(a%v==0)        count=a/v;        else        count=a/v+1;        if(k==1)        cout<<count<<endl;        if(k>=count&&b>=count-1)        cout<<"1"<<endl;        else        {            int sum=0,s=0,ok=1,t=0;            for(int i=1;i<=b;i++)            {                if(ok)                t++;                ok=0;                s++;                if(i%(k-1)==0)                {                    ok=1;                    sum+=k;                    s=0;                    if(sum==count)                    break;                }                if(sum+s+1==count)                break;            }            if(s)            sum+=s+1;            t+=count-sum;            cout<<t<<endl;        }    }    return 0;}


0 0