codeforces787A-The Monster
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.
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).
Print the first time Rick and Morty will scream at the same time, or - 1 if they will never scream at the same time.
20 2 9 19
82
2 1 16 12
-1
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.
【分析】已知a,b,c,d,求使得a+b*i == c+ d*j 成立的最小a+b*i 。
暴力枚举
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn = 10000;
int n[maxn],m[maxn];
int main()
{
int a,b,c,d;
while(~scanf("%d%d%d%d",&a,&b,&c,&d)){
int flag=0;
for(int i=0;i<maxn;i++){
n[i] = b + a*i;
m[i] = d + c*i;
}
int i,j;
for(i=0;i<maxn;i++){
for(j=0;j<maxn;j++){
if(n[i]==m[j]){
flag=1;
break;
}
}
if(flag)
break;
}
if(flag){
printf("%d\n",n[i]);
}
else
printf("-1\n");
}
return 0;
}
1957

被折叠的 条评论
为什么被折叠?



