CodeForces - 787A

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.

Example
Input
20 2
9 19
Output
82
Input
2 1
16 12
Output
-1
Note
In the first sample testcase, Rick’s 5th scream and Morty’s 8th time are at time 82.

In the second sample testcase, all Rick’s screams will be at odd times and Morty’s will be at even times, so they will never scream at the same time.

題意描述:兩個序列,b+a*x d+c*y
找出兩個序列相等的最小數,沒有輸出-1

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<algorithm>
using namespace std;
const int maxn=1e6+100;
/***
直接暴力枚舉x,判斷y是否存在
*****/
int main(){
int a,b,c,d;
int t;
scanf("%d%d%d%d",&a,&b,&c,&d);
int flag=1;
for(int i=0;i<maxn;i++){
    t=b+a*i;
    if((t-d)%c==0&&t>=d){
        flag=0;
        printf("%d\n",t);
        break;
    }
}
if(flag){
    printf("-1\n");
}
return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章