LeetCode 682. Baseball Game

这道LeetCode题目要求根据一系列操作计算棒球比赛的总分数。操作包括记录新得分、加法、乘法和无效操作。题目保证所有中间计算结果和最终答案都在32位整数范围内。解决此问题可以使用栈来存储分数。需要注意的是,字符串比较要使用.equals()而不是==,并且确保正确理解操作指令。题目提供两种解决方案:两步法和一步法。两步法首先计算所有分数,然后遍历栈得到结果,而一步法则直接在遍历过程中完成计算。
摘要由CSDN通过智能技术生成

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.

Example 1:

Input: ops = ["5","2","C","D","+"]
Output: 30
Explanation:
"5" - Add 5 to the record, record is now [5].
"2" - Add 2 to the record, record is now [5, 2].
"C" - Invalidate and remove the previous score, record is now [5].
"D" - Add 2 * 5 = 10 to the record, record is now [5, 10].
"+" - Add 5 + 10 = 15 to the record, record is now [5, 10, 15].
The total sum is 5 + 10 + 15 = 30.

Example 2:

Input: ops = ["5","-2","4","C","D","9","+","+"]
Output: 27
Explanation:
"5" - Add 5 to the record, record is now [5].
"-2" - Add -2 to the record, record is now [5, -2].
"4" - Add 4 to the record, record is now [5, -2, 4].
"C" - Invalidate and remove the previous score, record is now [5, -2].
"D" - Add 2 * -2 = -4 to the record, record is now [5, -2, -4].
"9" - Add 9 to the record, record is now [5, -2, -4, 9].
"+" - Add -4 + 9 = 5 to the record, record is now [5, -2, -4, 9, 5].
"+" - Add 9 + 5 = 14 to the record, record is now [5, -2, -4, 9, 5, 14].
The total sum is 5 + -2 + -4 + 9 + 5 + 14 = 27.

Example 3:

Input: ops = ["1","C"]
Output: 0
Explanation:
"1" - Add 1 to the record, record is now [1].
"C" - Invalidate and remove the previous score, record is now [].
Since the record is empty, the total sum is 0.

Constraints:

  • 1 <= operations.length <= 1000
  • operations[i] is "C""D""+", or a string representing an integer in the range [-3 * 104, 3 * 104].
  • 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.

这题其实很简单,类似于calculator简单版,就是按顺序给定数字和操作,求最后的计算结果。显然用stack来存放。

几个小坑:

1. string comparison得用.equals()不能用==……最最基础的问题太久没用都忘光了,太离谱了!

2. 读题很重要……把D看成了两个数相乘……debug了巨久才发现……

3. 以及最开始写了个two pass,先求完所有的score,最后遍历stack来求result。优化一下可以one pass做完。

two pass版:

class Solution {
    public int calPoints(String[] operations) {
        int result = 0;
        Deque<Integer> stack = new ArrayDeque<>();
        for (String s : operations) {
            if (s.equals("+")) {
                int a = stack.pop();
                int b = stack.peek();
                stack.push(a);
                stack.push(a + b);
            } else if (s.equals("C")) {
                stack.pop();
            } else if (s.equals("D")) {
                int a = stack.peek();
                stack.push(a * 2);
            } else {
                int a = Integer.parseInt(s);
                stack.push(a);
            }
        }
        for (int i : stack) {
            result += i;
        }
        return result;
    }
}

one pass版:

class Solution {
    public int calPoints(String[] operations) {
        int result = 0;
        Deque<Integer> stack = new ArrayDeque<>();
        for (String s : operations) {
            if (s.equals("+")) {
                int a = stack.pop();
                int b = stack.peek();
                stack.push(a);
                stack.push(a + b);
                result += (a + b);
            } else if (s.equals("C")) {
                int a = stack.pop();
                result -= a;
            } else if (s.equals("D")) {
                int a = stack.peek();
                stack.push(a * 2);
                result += (a * 2);
            } else {
                int a = Integer.parseInt(s);
                stack.push(a);
                result += a;
            }
        }
        return result;
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值