The Monster (Codefores-787A)

题目链接:

http://codeforces.com/problemset/problem/787/A

A. The Monster
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

A monster is chasing after Rick and Morty on another planet. They're so frightened that sometimes they scream. More accurately, Rick screams at times b, b + a, b + 2a, b + 3a, ... and Morty screams at times d, d + c, d + 2c, d + 3c, ....

The Monster will catch them if at any point they scream at the same time, so it wants to know when it will catch them (the first time they scream at the same time) or that they will never scream at the same time.

Input

The first line of input contains two integers a and b (1 ≤ a, b ≤ 100).

The second line contains two integers c and d (1 ≤ c, d ≤ 100).

Output

Print the first time Rick and Morty will scream at the same time, or  - 1 if they will never scream at the same time.

Examples
input
20 2
9 19
output
82
input
2 1
16 12
output
-1

题目大意:

有两个人被一个怪物追杀,第一个人在b+i*a时刻尖叫(i=1、2、3......),第二个人在d+i*c时刻尖叫(i=1、2、3......),当他们在同一时刻尖叫的话,他们将被怪物抓住。判断他们是否会被怪物抓住,如果不存在同时尖叫的时刻,输出 -1 。

解题思路:

虽然是暴力做的题,但是对时间要求非常严格,可以说不可以循环里面套循环。下面请大家看一下代码应该就明白了(一个for循环)。

代码:

#include<iostream>
using namespace std;
int main()
{
    int a,b,c,d;
    while(cin>>a>>b>>c>>d)
    {
        int flag=0,t1;   //flag用于标记,t1用于存储第一个人尖叫的时刻
        for(int i=0;i<=1000000;i++)   //让i值尽可能的大
        {
            t1=b+i*a;   //计算第一个人尖叫的时刻
            if((t1-d)%c==0&&t1-d>=0)   //说明存在同时尖叫的时刻
            {
                flag=1;   //把flag标记为1
                cout<<t1<<endl;
                break;
            }
        }
        if(flag==0)   //没有同时尖叫的时刻
            cout<<-1<<endl;
    }
    return 0;
}


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值