682. Baseball Game #
题目 #
你现在是一场采用特殊赛制棒球比赛的记录员。这场比赛由若干回合组成,过去几回合的得分可能会影响以后几回合的得分。
比赛开始时,记录是空白的。你会得到一个记录操作的字符串列表 ops
,其中 ops[i]
是你需要记录的第 i
项操作,ops
遵循下述规则:
- 整数
x
- 表示本回合新获得分数x
"+"
- 表示本回合新获得的得分是前两次得分的总和。题目数据保证记录此操作时前面总是存在两个有效的分数。"D"
- 表示本回合新获得的得分是前一次得分的两倍。题目数据保证记录此操作时前面总是存在一个有效的分数。"C"
- 表示前一次得分无效,将其从记录中移除。题目数据保证记录此操作时前面总是存在一个有效的分数。
返回记录中所有得分的总和。
思路 #
- 栈
代码 #
class Solution {
public int calPoints(String[] operations) {
Stack<Integer> score = new Stack<>();
for (String operation: operations) {
if (operation.equals("+") == true) {
int temp = score.pop(), newVal = temp + score.peek();
score.push(temp);
score.push(newVal);
}
else if (operation.equals("D") == true) score.push(2 * score.peek());
else if (operation.equals("C") == true) score.pop();
else score.push(Integer.parseInt(operation));
}
int ans = 0;
for (int s: score) ans += s;
return ans;
}
}