标签:
题目1006:ZOJ问题
分析:
2种情况输出"Accepted":
1."zoj"
2."xzo..ojx..x"(其中中间o的个数=末尾x的个数)
技巧:找到第一个‘z‘的位置和第一个‘j‘的位置,就可以就可以算出第一个‘z‘和第一个‘j‘之间的‘o‘的个数(就是末尾x的个数)
然后构造string s1="xzo..ojx..x"与原字符串比较
substr用法:s.substr(a,b) 返回s[a]开始的(包括s[a])长b的字符串
1 #include <cstdio> 2 #include<algorithm> 3 #include<iostream> 4 #include<string> 5 #include<cstring> 6 #include<vector> 7 using namespace std; 8 int main() 9 { 10 string s; 11 while(cin>>s){ 12 string x; 13 if(s=="zoj"){ 14 cout<<"Accepted"<<endl; 15 continue; 16 } 17 int i=0; 18 int tz=-1,tj=-1; 19 for(;i<s.length();i++){ 20 if(s[i]==‘z‘&&tz==-1){ 21 tz=i; 22 } 23 else{ 24 if(s[i]==‘j‘&&tj==-1){ 25 tj=i; 26 } 27 } 28 } 29 int num=tj-tz-1; 30 if(num>0){ 31 x=s.substr(0,tz); 32 /*for(i=0;i<tz;i++){ 33 if(s[i]!=‘o‘) 34 break; 35 } 36 if(i!=tz){ 37 cout<<"Wrong Answer"<<endl; 38 continue; 39 } 40 for(i=tz+1;i<tj;i++){ 41 if(s[i]!=‘o‘) 42 break; 43 } 44 if(i!=tj){ 45 cout<<"Wrong Answer"<<endl; 46 continue; 47 }*/ 48 string s1=x+‘z‘; 49 for(i=0;i<num;i++){ 50 s1+=‘o‘; 51 } 52 s1+=‘j‘; 53 for(i=0;i<num;i++){ 54 s1+=x; 55 } 56 if(s1==s){ 57 cout<<"Accepted"<<endl; 58 continue; 59 } 60 } 61 cout<<"Wrong Answer"<<endl; 62 } 63 return 0; 64 }
九度oj 1006 ZOJ问题 2010年浙江大学计算机及软件工程研究生机试真题
标签:
原文地址:http://www.cnblogs.com/Deribs4/p/4291299.html