记录编号 |
253331 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2003]乒乓球 |
最终得分 |
100 |
用户昵称 |
W |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.009 s |
提交时间 |
2016-04-21 21:49:47 |
内存使用 |
0.27 MiB |
显示代码纯文本
#include<cstdio>
#include<vector>
using namespace std;
vector<char> s;
vector<char> :: iterator it;
int main(){
freopen("table.in","r",stdin);
freopen("table.out","w",stdout);
int i=0,W=0,L=0,f;
char p;
while(1>0){
scanf("%c",&p);
if(p=='E')break;
s.push_back(p);
}
for(it=s.begin();it!=s.end();it++){
if(*it=='W')W++;
else if(*it=='L')L++;
f=W-L>L-W?W-L:L-W;
if(f<=1)continue;
if(W>=11||L>=11){printf("%d:%d\n",W,L);W=0;L=0;}
}
printf("%d:%d\n",W,L);
printf("\n");
W=0;L=0;
for(it=s.begin();it!=s.end();it++){
if(*it=='W')W++;
else if(*it=='L')L++;
f=W-L>L-W?W-L:L-W;
if(f<=1)continue;
if(W>=21||L>=21){printf("%d:%d\n",W,L);W=0;L=0;}
}
printf("%d:%d\n",W,L);
return 0;
}