forked from sowon-dev/AlgorithmStudy_Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNumberLineJumps.java
More file actions
42 lines (35 loc) · 934 Bytes
/
NumberLineJumps.java
File metadata and controls
42 lines (35 loc) · 934 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
package hackerrank;
public class NumberLineJumps {
static String kangaroo(int x1, int v1, int x2, int v2) {
//sol1
//while문 사용
//각각 몇 번 누적합을 했는지 횟수를 세기위해 idx1, idx2변수를 두고 1씩 증가시켰다.
//x1이 x2보다 커지면 따라잡을 수 없으니 while문 종료
/*
int idx1 = 0;
int idx2 = 0;
while(x1 <= x2){
if(idx1 == idx2 && x1 == x2) return "YES";
x1 += v1;
idx1++;
x2 += v2;
idx2++;
}
return "NO";
*/
//sol2 : while 조건을 무한 반복
while (true) {
if (v1 <= v2) {
return "NO";
}
x1 += v1;
x2 += v2;
if (x1 == x2) return "YES";
if (x1 > x2) return "NO";
}
}
public static void main(String[] args) {
System.out.println(kangaroo(0, 3, 4, 2) + ", ans: YES");
System.out.println(kangaroo(0, 2, 5, 3) + ", ans: NO");
}
}