codeforces 652 A. Gabriel and Caterpillar

来源:互联网 发布:maya2015软件补丁更新 编辑:程序博客网 时间:2024/05/01 09:28

A. Gabriel and Caterpillar


The 9-th grade student Gabriel noticed a caterpillar on a tree when walking around in a forest after the classes. The caterpillar was on the heighth1 cm from the ground. On the heighth2 cm (h2 > h1) on the same tree hung an apple and the caterpillar was crawling to the apple.

Gabriel is interested when the caterpillar gets the apple. He noted that the caterpillar goes up bya cm per hour by day and slips down byb cm per hour by night.

In how many days Gabriel should return to the forest to see the caterpillar get the apple. You can consider that the day starts at10 am and finishes at10 pm. Gabriel's classes finish at2 pm. You can consider that Gabriel noticed the caterpillar just after the classes at2 pm.

Note that the forest is magic so the caterpillar can slip down under the ground and then lift to the apple.

Input

The first line contains two integers h1, h2 (1 ≤ h1 < h2 ≤ 105) — the heights of the position of the caterpillar and the apple in centimeters.

The second line contains two integers a, b (1 ≤ a, b ≤ 105) — the distance the caterpillar goes up by day and slips down by night, in centimeters per hour.

Output

Print the only integer k — the number of days Gabriel should wait to return to the forest and see the caterpillar getting the apple.

If the caterpillar can't get the apple print the only integer  - 1.

Examples
Input
10 302 1
Output
1
Input
10 131 1
Output
0
Input
10 191 2
Output
-1
Input
1 505 4
Output
1
Note

In the first example at 10 pm of the first day the caterpillar gets the height26. At10 am of the next day it slips down to the height14. And finally at6 pm of the same day the caterpillar gets the apple.

Note that in the last example the caterpillar was slipping down under the ground and getting the apple on the next day.


题意:一只毛毛虫从h1高度去h2高度吃苹果,白天每小时上升a厘米,晚上每小时下降b厘米,从当天下午2点开始计算,问几天能到达h2

分析:这题主要是模拟毛毛虫的上升下降过程,数据不大,不会超时,注意到毛毛虫可以下降到地底,在判断-1时需要尤其特判。

#include<cstring>#include<cstdio>#include<iostream>using namespace std;int main(){    int h1,h2,a,b;    while(scanf("%d%d%d%d",&h1,&h2,&a,&b)!=EOF)    {        if(h1+8*a<h2&&h1+12*a-12*b<=h1)        {            printf("-1\n");            continue;        }        if(a==b&&h1+8*a<h2)        {            printf("-1\n");            continue;        }        int ans=0;        while(1)        {            h1+=a*8;            if(h1>=h2) break;            h1-=b*12;            ans++;            h1+=a*4;        }        printf("%d\n",ans);    }    return 0; }



0 0
原创粉丝点击