记录编号 |
24696 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2003]乒乓球 |
最终得分 |
100 |
用户昵称 |
Truth.Cirno |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.094 s |
提交时间 |
2011-04-15 11:45:07 |
内存使用 |
0.33 MiB |
显示代码纯文本
//#include <iostream>
#include <fstream>
#include <cmath>
//#include <iomanip>//<<setiosflags(ios::fixed)<<setprecision(user set)<<
using namespace std;
ifstream input("table.in");
ofstream output("table.out");
char ch;
int w11=0,w21=0,l11=0,l21=0,a[10000][2],p=0,i;
int main(void)
{
while (0==0)
{
input>>ch;
if (ch=='E')
break;
if (ch=='W')
{
w11++;
w21++;
}
else if (ch=='L')
{
l11++;
l21++;
}
if ((w11>=11||l11>=11)&&abs(w11-l11)>=2)
{
output<<w11<<':'<<l11<<endl;
w11=0;
l11=0;
}
if ((w21>=21||l21>=21)&&abs(w21-l21)>=2)
{
p++;
a[p][0]=w21;
a[p][1]=l21;
w21=0;
l21=0;
}
}
output<<w11<<':'<<l11<<endl;
output<<endl;
for (i=1;i<=p;i++)
output<<a[i][0]<<':'<<a[i][1]<<endl;
output<<w21<<':'<<l21<<endl;
input.close();
output.close();
return(0);
}