-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAsteroids.java
38 lines (34 loc) · 1.26 KB
/
Asteroids.java
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
import java.util.*;
class Asteroids {
public static void main(String[] args) {
int[] arr = { 5, 10, -5 };
System.out.println(Arrays.toString(asteroidCollision(arr))); // [5, 10]
}
/**
* Rules: 1. If two astroid meet the smaller will explode. 2. If both asteroids
* are the same size, both will explode 3. Two asteroids moving in the same
* direction will never meet (collide) Use ArrayList to add all asteroids. for
* list.size() - 1 .. 0 get the first asteroid (i) get the second asteroid (i -
* 1) // if in bounds
*
**/
public static int[] asteroidCollision(int[] asteroids) {
Stack<Integer> stack = new Stack<>();
for (int a : asteroids) {
while (!stack.isEmpty() && a < 0 && stack.peek() > 0 && Math.abs(stack.peek()) < Math.abs(a)) {
stack.pop();
}
if (stack.isEmpty() || a > 0 || stack.peek() < 0) {
stack.push(a);
} else if (Math.abs(a) == Math.abs(stack.peek())) {
stack.pop();
}
}
int[] arr = new int[stack.size()];
Collections.reverse(stack);
for (int i = 0; i < arr.length; i++) {
arr[i] = stack.pop();
}
return arr;
}
}