WWWWWWWWWWWWWWWWWWWW WWLWE
11:0 11:0 1:1 21:0 2:1
1 #include<iostream> 2 #include<cstdio> 3 #include<algorithm> 4 #include<cstring> 5 #include<string> 6 #include<cmath> 7 using namespace std; 8 string a,b;//b为总的字符串 9 int win,lose,ah,bh; 10 string scan() 11 { 12 string all,temp; 13 while(getline(cin,temp)) 14 { 15 all+=temp; 16 if(all.find('E')!=std::string::npos) 17 break; 18 } 19 return all.substr(0,all.find('E'))+"E"; 20 } 21 bool t=0; 22 void match(string s,int h,int size) 23 { 24 int i=0; 25 while(1) 26 { 27 if((win>=h||lose>=h)&&abs(win-lose)>=2) 28 { 29 printf("%d:%d\n",win,lose); 30 // s.erase(0,win+lose);//左闭右开 31 win=0,lose=0; 32 } 33 if(s[i]=='W')win++; 34 if(s[i]=='L')lose++; 35 if(s[i]=='E') 36 { 37 printf("%d:%d\n",win,lose); 38 win=0,lose=0; 39 return; 40 } 41 42 i++; 43 } 44 } 45 int main() 46 { 47 b=scan(); 48 bh=b.length(); 49 match(b,11,bh); 50 cout<<endl; 51 match(b,21,bh); 52 return 0; 53 } 54
我们一部分一部分来进行拆解
第一部分:输入
1 while(1) 2 { 3 ah=0; 4 cin>>a; 5 ah=a.size(); 6 b+=a; 7 bh+=ah; 8 if(a[ah-1]=='E') break; 9 }
此代码会导致内存超限:
我的疑惑:a每次只占用了属于a的地址,为什么会内存超限?
学习fys写法:
1 string scan() 2 { 3 string all,temp; 4 while(getline(cin,temp)) 5 { 6 all+=temp; 7 if(all.find('E')!=std::string::npos) 8 break; 9 } 10 return all.substr(0,all.find('E'))+"E"; 11 }
因此我们需要补充string的一些常用函数