codeforcesPlayrix Codescapes Cup (Codeforces Round #413, rated, Div. 1 + Div. 2)A题

来源:互联网 发布:java zip打包下载 编辑:程序博客网 时间:2024/05/21 11:14
题目:
A. Carrot Cakes
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

In some game by Playrix it takes t minutes for an oven to bake k carrot cakes, all cakes are ready at the same moment t minutes after they started baking. Arkady needs at least n cakes to complete a task, but he currently don't have any. However, he has infinitely many ingredients and one oven. Moreover, Arkady can build one more similar oven to make the process faster, it would take d minutes to build the oven. While the new oven is being built, only old one can bake cakes, after the new oven is built, both ovens bake simultaneously. Arkady can't build more than one oven.

Determine if it is reasonable to build the second oven, i.e. will it decrease the minimum time needed to get n cakes or not. If the time needed with the second oven is the same as with one oven, then it is unreasonable.

Input

The only line contains four integers ntkd (1 ≤ n, t, k, d ≤ 1 000) — the number of cakes needed, the time needed for one oven to bake k cakes, the number of cakes baked at the same time, the time needed to build the second oven.

Output

If it is reasonable to build the second oven, print "YES". Otherwise print "NO".

Examples
input
8 6 4 5
output
YES
input
8 6 4 6
output
NO
input
10 3 11 4
output
NO
input
4 2 1 4
output
YES
Note

In the first example it is possible to get 8 cakes in 12 minutes using one oven. The second oven can be built in 5 minutes, so after 6minutes the first oven bakes 4 cakes, the second oven bakes 4 more ovens after 11 minutes. Thus, it is reasonable to build the second oven.

In the second example it doesn't matter whether we build the second oven or not, thus it takes 12 minutes to bake 8 cakes in both cases. Thus, it is unreasonable to build the second oven.

In the third example the first oven bakes 11 cakes in 3 minutes, that is more than needed 10. It is unreasonable to build the second oven, because its building takes more time that baking the needed number of cakes using the only oven.

//1.看我们先造完还是第一个先烤完//2.若只剩下一个,手动给第一个oven烤,剩下不足k个也给第一个//3.n要减一的目的:若恰好是前n-k个烤完时间恰好为d则再来k个也不需要多一个oven//续3:若是不减一答案不同 第二个点就是 #include<bits/stdc++.h>using namespace std;int main(){int n,k,t,d;//1.看我们先造完还是第一个先烤完//2.若只剩下一个,手动给第一个oven烤,剩下不足k个也给第一个//3.n要减一的目的:若恰好是前n-k个烤完时间恰好为d则再来k个也不需要多一个oven//续3:若是不减一答案不同 第二个点就是 scanf("%d%d%d%d",&n,&t,&k,&d);if(d<(n-1)/k*t) puts("YES");else puts("NO"); } 
题意很坑,他是可以边造边烤的。

0 0
原创粉丝点击