-
Notifications
You must be signed in to change notification settings - Fork 0
/
735.行星碰撞.cpp
128 lines (121 loc) · 3.08 KB
/
735.行星碰撞.cpp
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
* @lc app=leetcode.cn id=735 lang=cpp
*
* [735] 行星碰撞
*
* https://leetcode-cn.com/problems/asteroid-collision/description/
*
* algorithms
* Medium (37.87%)
* Likes: 84
* Dislikes: 0
* Total Accepted: 7.9K
* Total Submissions: 20.4K
* Testcase Example: '[5,10,-5]'
*
* 给定一个整数数组 asteroids,表示在同一行的行星。
*
* 对于数组中的每一个元素,其绝对值表示行星的大小,正负表示行星的移动方向(正表示向右移动,负表示向左移动)。每一颗行星以相同的速度移动。
*
*
* 找出碰撞后剩下的所有行星。碰撞规则:两个行星相互碰撞,较小的行星会爆炸。如果两颗行星大小相同,则两颗行星都会爆炸。两颗移动方向相同的行星,永远不会发生碰撞。
*
* 示例 1:
*
*
* 输入:
* asteroids = [5, 10, -5]
* 输出: [5, 10]
* 解释:
* 10 和 -5 碰撞后只剩下 10。 5 和 10 永远不会发生碰撞。
*
*
* 示例 2:
*
*
* 输入:
* asteroids = [8, -8]
* 输出: []
* 解释:
* 8 和 -8 碰撞后,两者都发生爆炸。
*
*
* 示例 3:
*
*
* 输入:
* asteroids = [10, 2, -5]
* 输出: [10]
* 解释:
* 2 和 -5 发生碰撞后剩下 -5。10 和 -5 发生碰撞后剩下 10。
*
*
* 示例 4:
*
*
* 输入:
* asteroids = [-2, -1, 1, 2]
* 输出: [-2, -1, 1, 2]
* 解释:
* -2 和 -1 向左移动,而 1 和 2 向右移动。
* 由于移动方向相同的行星不会发生碰撞,所以最终没有行星发生碰撞。
*
*
* 说明:
*
*
* 数组 asteroids 的长度不超过 10000。
* 每一颗行星的大小都是非零整数,范围是 [-1000, 1000] 。
*
*
*/
// @lc code=start
#include <vector>
#include <stack>
using namespace std;
class Solution {
public:
vector<int> asteroidCollision(vector<int>& asteroids) {
stack<int> s;
for(int a:asteroids){
if(!s.empty()){
int top = s.top();
bool flag = true;
while(a < 0 && top > 0){
if(-a > top){
s.pop();
if(s.empty()){
break;
}else{
top = s.top();
}
}else if(-a == top){
s.pop();
flag = false;
break;
}else if(-a < top){
flag = false;
break;
}else{
s.push(a);
flag = false;
break;
}
}
if(flag)
s.push(a);
}else {
s.push(a);
}
}
int len = s.size();
vector<int> ret(len);
while(!s.empty()){
ret[len - 1] = s.top();
s.pop();
l en --;
}
return ret;
}
};
// @lc code=end