#include <iostream> #include <string> using namespace std; int t[300000]; int main() { cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(false); string g; cin>>g; int i, j, w=0, k, a, b, c; for(i=0; i<g.size()-2; i++) { for(j=3; j<=g.size()-i; j++) { a=0, b=0, c=0; for(k=0; k<(g.substr(i, j)).size(); k++) { if(g.substr(i, j)[k]=='a') a++; else if(g.substr(i, j)[k]=='b') b++; else c++; } if(a>b) { if (b>0) break; else if(a==c || c==0) w++; } else if (a<b) { if(a>0) break; else if(b==c || c==0) w++; } else if(c==b || b==0) w++; } } cout<<w+2*g.size()-1; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | #include <iostream> #include <string> using namespace std; int t[300000]; int main() { cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(false); string g; cin>>g; int i, j, w=0, k, a, b, c; for(i=0; i<g.size()-2; i++) { for(j=3; j<=g.size()-i; j++) { a=0, b=0, c=0; for(k=0; k<(g.substr(i, j)).size(); k++) { if(g.substr(i, j)[k]=='a') a++; else if(g.substr(i, j)[k]=='b') b++; else c++; } if(a>b) { if (b>0) break; else if(a==c || c==0) w++; } else if (a<b) { if(a>0) break; else if(b==c || c==0) w++; } else if(c==b || b==0) w++; } } cout<<w+2*g.size()-1; return 0; } |