AcWing 413. 乒乓球
原题链接
简单
作者:
沙漠绿洲
,
2020-10-22 21:44:32
,
所有人可见
,
阅读 382
C++ 代码
#include <iostream>
#include <vector>
using namespace std;
using PII = pair<int, int>;
int main()
{
vector<PII> v1, v2;
string s;
int w = 0, l = 0; // 11分制
int w1 = 0, l1 = 0; // 21分制
while(cin >> s){
for(char c : s){
if((w >= 11 && w - l >= 2) || (l >= 11 && l - w >= 2)){
v1.push_back({w, l});
w = l = 0;
}
if((w1 >= 21 && w1 - l1 >= 2) || (l1 >= 21 && l1 - w1 >= 2)){
v2.push_back({w1, l1});
w1 = l1 = 0;
}
if(c == 'W') ++ w, ++ w1;
else if(c == 'L') ++ l, ++ l1;
else if(c == 'E'){
v1.push_back({w, l});
v2.push_back({w1, l1});
break;
}
}
}
for(auto& x : v1) printf("%d:%d\n", x.first, x.second);
puts("");
for(auto& x : v2) printf("%d:%d\n", x.first, x.second);
return 0;
}