You are choreographing a circus show with various animals. For one act, you are given two kangaroos on a number line ready to jump in the positive direction (i.e, toward positive infinity).
You have to figure out a way to get both kangaroos at the same location at the same time as part of the show. If it is possible, return YES, otherwise return NO.
INPUT
0 3 4 2
OUTPUT
YES
x2
가 x1
보다 앞에 있으면서 속도도 빠르면 두 캥거루는 절대 만날 수 없으므로 NO
를 반환한다.x1
과 x2
가 같지 않다면, 두 캥거루를 각자만의 속도만큼 계속 앞으로 전진시킨다.x1
캥거루가 x2
캥거루를 앞지르면 둘은 절대 만날 수 없다.function kangaroo(x1, v1, x2, v2) {
if((x1 > x2 && v1 >= v2) || (x2 > x1 && v2 >= v1)) return("NO");
while(x1 !== x2) {
x1 += v1;
x2 += v2;
if(x1 > x2) return "NO";
}
return("YES");
}