题目描述:
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.
代码如下:
#include<iostream>
#include<vector>
#include<string>
#include <numeric>
#include <functional>
using namespace std;
class Solution
{
public:
int calPoints(vector<string>& ops)
{
vector<int> r;
for (string &op:ops)
{
if (op == "C") { r.pop_back(); }
else if (op == "D") {r.push_back(2 * r.back());}//back
else if (op == "+") { r.push_back(r.end()[-2] + r.end()[-1]); }//没想到?
else { r.push_back(stoi(op)); }
}//stoi
return accumulate(r.begin(), r.end(), 0);//accumulate
}
};
int main()
{
Solution *sl = new Solution();
vector<string>svec = { "5", "2", "C", "D", "+" };
vector<string>svec2 = { "5","-2","4","C","D","9","+","+" };
int score=sl->calPoints(svec);
int score2 = sl->calPoints(svec2);
cout << score << endl;
cout << score2 << endl;
delete sl;
return 0;
}