PivotOJ

Small Schedule

시간 제한: 1000ms메모리 제한: 512MB출처: ICPC Rocky Mountain Regional 2018BOJ 22286

문제

Everybody is into cloud computing these days, so quite a few different business models are being experimented with. You are trying a very simple one: you sell time on your machines in one of two batches called slots. A customer can buy one second of CPU time or QQ seconds for some integer QQ.

Each time slot a customer purchases must be completed on a single machine, but you get to decide how to allocate the purchased time slots between machines.

After coming back from a long vacation, you see that all of your machines are idle and a variety of orders have come in. To keep customers happy, you must decide how to distribute these requests between machines in a way that minimizes the time when the purchased time slots are finally all completed.

What is the smallest amount of time in which you can complete all of the purchased time slots?

입력

The input consists of a single line containing four integers QQ (2Q10002 \leq Q \leq 1\,000), which is the time needed to complete the longer batches, MM (1M10000001 \leq M \leq 1\,000\,000), which is the number of machines owned by your company, SS (0S10000000 \leq S \leq 1\,000\,000), which is the number of 1-second time slots purchased, and LL (0L10000000 \leq L \leq 1\,000\,000), which is the number of QQ-second time slots purchased.

출력

Display the smallest amount of time in which you can complete all of the purchased time slots.

예제

예제 1

입력
2 4 3 6
출력
4

예제 2

입력
3 4 3 5
출력
6

예제 3

입력
10 2 0 1
출력
10
코드를 제출하려면 로그인하세요.