-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlce_p0682_baseball_game.java
More file actions
70 lines (55 loc) · 1.94 KB
/
lce_p0682_baseball_game.java
File metadata and controls
70 lines (55 loc) · 1.94 KB
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
/*
LCE 682. Baseball Game
You are keeping the scores for a baseball game with strange rules.
At the beginning of the game, you start with an empty record.
You are given a list of strings operations, where operations[i] is the ith operation you must apply to the record and is one of the following:
- An integer x.
Record a new score of x.
- '+'.
Record a new score that is the sum of the previous two scores.
- 'D'.
Record a new score that is the double of the previous score.
- 'C'.
Invalidate the previous score, removing it from the record.
Return the sum of all the scores on the record after applying all the operations.
The test cases are generated such that the answer and all intermediate calculations fit in a 32-bit integer and that all operations are valid.
Constraints:
- 1 <= operations.length <= 1000
- operations[i] is "C", "D", "+", or a string representing an integer in the range [-3 * 10^4, 3 * 10^4].
- For operation "+", there will always be at least two previous scores on the record.
- For operations "C" and "D", there will always be at least one previous score on the record.
Topics:
- Array
- Stack
- Simulation
*/
import java.util.Stack;
class Solution {
public int calPoints(String[] operations) {
Stack<Integer> stack = new Stack<>();
for (String opr : operations) {
if (opr.equals("+")) {
int lastElement = stack.pop();
int secondLastElement = stack.peek();
stack.add(lastElement);
stack.add(secondLastElement + lastElement);
}
else if (opr.equals("D")) {
stack.add(stack.peek() * 2);
}
else if (opr.equals("C")) {
stack.pop();
}
else {
stack.add(Integer.parseInt(opr));
}
}
int sum = 0;
while (!stack.isEmpty()) {
sum += stack.pop();
}
return sum;
}
}
// Time Complexity: O(n) - 2 ms -> 93.51%
// Space Complexity: O(n) - 41.60 MB -> 59.50%