HDU 3783 ZOJ

时间:2025-01-02 15:33:20

ZOJ

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2779    Accepted Submission(s): 1840

Problem Description
读入一个字符串,字符串中包含ZOJ三个字符,个数不一定相等,按ZOJ的顺序输出,当某个字符用完时,剩下的仍然按照ZOJ的顺序输出。
Input
题目包含多组用例,每组用例占一行,包含ZOJ三个字符,当输入“E”时表示输入结束。
1<=length<=100。
Output
对于每组输入,请输出一行,表示按照要求处理后的字符串。
具体可见样例。
Sample Input
ZZOOOJJJ
ZZZZOOOOOJJJ
ZOOOJJ
E
Sample Output
ZOJZOJOJ
ZOJZOJZOJZOO
ZOJOJO
Source
浙大计算机研究生复试上机考试-2009年
 #include <bits/stdc++.h>
using namespace std;
int main()
{
int len,i;
int a=;
int b=;
int c=;
char s[];
while(gets(s)&&(s[]!='E'))
{
len=strlen(s);
for(i=;i<len;i++)
{
if(s[i]=='Z')
a++;
else if(s[i]=='O')
b++;
else if(s[i]=='J')
c++;
}
while(a>||b>||c>)
{
if(a>)
{
cout<<'Z';
a--;
}
if(b>)
{
cout<<'O';
b--;
}
if(c>)
{
cout<<'J';
c--;
}
}
cout<<endl;
}
return ;
}