博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode刷题:682. Baseball Game
阅读量:4039 次
发布时间:2019-05-24

本文共 4365 字,大约阅读时间需要 14 分钟。

LeetCode刷题:682. Baseball Game

原题链接:

You're now a baseball game point recorder.

Given a list of strings, each string can be one of the 4 following types:

Integer (one round's score): Directly represents the number of points you get in this round.

"+" (one round's score): Represents that the points you get in this round are the sum of the last two valid round's points.
"D" (one round's score): Represents that the points you get in this round are the doubled data of the last valid round's points.
"C" (an operation, which isn't a round's score): Represents the last valid round's points you get were invalid and should be removed.
Each round's operation is permanent and could have an impact on the round before and the round after.

You need to return the sum of the points you could get in all the rounds.

Example 1:

Input: ["5","2","C","D","+"]
Output: 30
Explanation: 
Round 1: You could get 5 points. The sum is: 5.
Round 2: You could get 2 points. The sum is: 7.
Operation 1: The round 2's data was invalid. The sum is: 5.  
Round 3: You could get 10 points (the round 2's data has been removed). The sum is: 15.
Round 4: You could get 5 + 10 = 15 points. The sum is: 30.
Example 2:
Input: ["5","-2","4","C","D","9","+","+"]
Output: 27
Explanation: 
Round 1: You could get 5 points. The sum is: 5.
Round 2: You could get -2 points. The sum is: 3.
Round 3: You could get 4 points. The sum is: 7.
Operation 1: The round 3's data is invalid. The sum is: 3.  
Round 4: You could get -4 points (the round 3's data has been removed). The sum is: -1.
Round 5: You could get 9 points. The sum is: 8.
Round 6: You could get -4 + 9 = 5 points. The sum is 13.
Round 7: You could get 9 + 5 = 14 points. The sum is 27.
Note:
The size of the input list will be between 1 and 1000.
Every integer represented in the list will be between -30000 and 30000.

你现在是棒球比赛记录员。

给定一个字符串列表,每个字符串可以是以下四种类型之一:
1.整数(一轮的得分):直接表示您在本轮中获得的积分数。
2. "+"(一轮的得分):表示本轮获得的得分是前两轮有效 回合得分的总和。
3. "D"(一轮的得分):表示本轮获得的得分是前一轮有效 回合得分的两倍。
4. "C"(一个操作,这不是一个回合的分数):表示您获得的最后一个有效 回合的分数是无效的,应该被移除。

每一轮的操作都是永久性的,可能会对前一轮和后一轮产生影响。

你需要返回你在所有回合中得分的总和。

示例 1:

输入: ["5","2","C","D","+"]

输出: 30
解释: 
第1轮:你可以得到5分。总和是:5。
第2轮:你可以得到2分。总和是:7。
操作1:第2轮的数据无效。总和是:5。
第3轮:你可以得到10分(第2轮的数据已被删除)。总数是:15。
第4轮:你可以得到5 + 10 = 15分。总数是:30。
示例 2:

输入: ["5","-2","4","C","D","9","+","+"]

输出: 27
解释: 
第1轮:你可以得到5分。总和是:5。
第2轮:你可以得到-2分。总数是:3。
第3轮:你可以得到4分。总和是:7。
操作1:第3轮的数据无效。总数是:3。
第4轮:你可以得到-4分(第三轮的数据已被删除)。总和是:-1。
第5轮:你可以得到9分。总数是:8。
第6轮:你可以得到-4 + 9 = 5分。总数是13。
第7轮:你可以得到9 + 5 = 14分。总数是27。
注意:

输入列表的大小将介于1和1000之间。

列表中的每个整数都将介于-30000和30000之间。


算法设计

package com.bean.algorithm.basic;import java.util.Stack;/* * Input: ["5","2","C","D","+"] * Output: 30 * Explanation:  * Round 1: You could get 5 points. The sum is: 5. * Round 2: You could get 2 points. The sum is: 7. * Operation 1: The round 2's data was invalid. The sum is: 5.  * Round 3: You could get 10 points (the round 2's data has been removed). The sum is: 15. * Round 4: You could get 5 + 10 = 15 points. The sum is: 30. * */public class BaseballGame {		public int calPoints(String[] ops) {        Stack
stack = new Stack<>(); int sum = 0; for(String op : ops) { int prev = 0; switch(op) { case "C": prev = stack.pop(); sum -= prev; break; case "D": prev = stack.pop(); sum += (prev*2); stack.push(prev); stack.push(prev*2); break; case "+": prev = stack.pop(); int prevPrev = stack.pop(); sum+= prev; sum+= prevPrev; stack.push(prevPrev); stack.push(prev); stack.push(prev + prevPrev); break; default: int i = Integer.parseInt(op); stack.push(i); sum += i; break; } } return sum; } public static void main(String[] args) { BaseballGame baseballGame=new BaseballGame(); String[] arr= {"5","2","C","D","+"}; int result = baseballGame.calPoints(arr); System.out.println("result = "+result); }}

程序运行结果

result = 30

 

转载地址:http://qjtdi.baihongyu.com/

你可能感兴趣的文章
python_configparser(解析ini)
查看>>
selenium学习资料
查看>>
<转>文档视图指针互获
查看>>
Matlab subplot 图像间距调整
查看>>
从mysql中 导出/导入表及数据
查看>>
HQL语句大全(转)
查看>>
几个常用的Javascript字符串处理函数 spilt(),join(),substring()和indexof()
查看>>
javascript传参字符串 与引号的嵌套调用
查看>>
swiper插件的的使用
查看>>
layui插件的使用
查看>>
JS牛客网编译环境的使用
查看>>
9、VUE面经
查看>>
关于进制转换的具体实现代码
查看>>
洛谷 P1848
查看>>
BZOJ 2669
查看>>
小W走迷宫
查看>>
高精度四则运算模板
查看>>
BZOJ 2653
查看>>
HDU 5283
查看>>
BZOJ 4554
查看>>