模拟评测机判断答案
先判断有没有不一样的
有的话再提取出 有效子列 看看有没有错的
1 #include2 #include 3 #include 4 #include 5 using namespace std; 6 int t; 7 string a,b,sa,sb; 8 char s[5005]; 9 const char p[4][50]={ "Accepted","Presentation Error","Wrong Answer"};10 void getstring(string& a)11 {12 while(gets(s))13 {14 if(!strcmp(s,"START")) break;15 }16 while(1)17 {18 gets(s);19 if(!strcmp(s,"END")) break;20 a+=s;21 a+='\n';22 }23 }24 void getsub(string& a,string& sa)25 {26 int len=a.length();27 for(int i=0;i