-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathasteroid_collision.go
110 lines (97 loc) · 2 KB
/
asteroid_collision.go
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package main
import "math"
/*
type LinkNode struct {
val int
pos bool
next *LinkNode
prev *LinkNode
}
func asteroidCollision(a []int) []int {
head := &LinkNode{pos: false}
current := head
n := len(a)
for i := 0; i < n; i++ {
node := &LinkNode{val: int(math.Abs(float64(a[i]))), pos: a[i] > 0}
current.next = node
node.prev = current
current = node
}
tail := &LinkNode{pos: true}
current.next = tail
tail.prev = current
current = head
for current != tail {
if current.pos {
nextNode := current.next
if nextNode.pos {
current = nextNode
} else {
if nextNode.val == current.val {
prevNode := current.prev
delete1 := current
delete2 := current.next
nextNode = delete2.next
prevNode.next = nextNode
if nextNode != nil {
nextNode.prev = prevNode
}
current = prevNode
_ = delete1
_ = delete2
} else if nextNode.val > current.val {
prevNode := current.prev
prevNode.next = nextNode
if nextNode != nil {
nextNode.prev = prevNode
}
if prevNode.pos {
current = current.prev
} else {
current = current.next
}
} else {
_ = nextNode
nextNode = nextNode.next
current.next = nextNode
if nextNode != nil {
nextNode.prev = current
}
}
}
} else {
current = current.next
}
}
var ans []int
current = head.next
for current != tail {
value := current.val
if !current.pos {
value = -value
}
ans = append(ans, value)
current = current.next
}
return ans
}
*/
func asteroidCollision(asteroids []int) []int {
n := len(asteroids)
j := 0
for i := 0; i < n; i++ {
asteroid := asteroids[i]
for j > 0 && asteroids[j-1] > 0 && asteroid < 0 && asteroids[j-1] < int(math.Abs(float64(asteroid))) {
j--
}
if j == 0 || asteroid > 0 || asteroids[j-1] < 0 {
asteroids[j] = asteroid
j++
} else if asteroids[j-1] == int(math.Abs(float64(asteroid))) {
j--
}
}
result := make([]int, j)
copy(result, asteroids[:j])
return result
}