forked from amankayat/HackerRank-Solution-Algorithm-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkangaaroo.cpp
More file actions
46 lines (39 loc) · 747 Bytes
/
kangaaroo.cpp
File metadata and controls
46 lines (39 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <bits/stdc++.h>
using namespace std;
/*
* Complete the 'kangaroo' function below.
*
* The function is expected to return a STRING.
* The function accepts following parameters:
* 1. INTEGER x1
* 2. INTEGER v1
* 3. INTEGER x2
* 4. INTEGER v2
*/
string kangaaroo(int x1,int v1,int x2, int v2){
if(x1==x2)
return "YES";
if((x2>x1 && v2>v1) || (x1>x2 && v1>v2))
return "NO";
else{
while(x1>x2){
x1+=v1;
x2+=v2;
}
while(x2>x1){
x1+=v1;
x2+=v2;
}
if(x1==x2)
return "YES";
else
return "NO";
}
}
int main(){
int x1,v1,x2,v2;
cin>>x1>>v1;
cin>>x2>>v2;
string result = kangaaroo(x1,v1,x2,v2);
cout<<result;
}