#include <iostream> using namespace std; int tab[3][301000]; int i=0; int r=0; int main() { // your code goes here char c; while(scanf("%c",&c) && c>='a') { //printf(">%c<",c); for (int j=0;j<i;j++)tab[c-'a'][j]++; tab[c-'a'][i]=1; i++; for (int j=0;j<i;j++) { if(tab[0][j] == 0 && tab[1][j] == 0) r++; else if(tab[0][j] == 0 && tab[2][j] == 0) r++; else if(tab[1][j] == 0 && tab[2][j] == 0) r++; else if(tab[0][j] == 0 && tab[1][j] == tab[2][j]) r++; else if(tab[1][j] == 0 && tab[0][j] == tab[2][j]) r++; else if(tab[2][j] == 0 && tab[0][j] == tab[1][j]) r++; else if(tab[0][j] == tab[1][j] && tab[1][j] == tab[2][j]) r++; } c=0; } printf("%d\n",r); 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 42 | #include <iostream> using namespace std; int tab[3][301000]; int i=0; int r=0; int main() { // your code goes here char c; while(scanf("%c",&c) && c>='a') { //printf(">%c<",c); for (int j=0;j<i;j++)tab[c-'a'][j]++; tab[c-'a'][i]=1; i++; for (int j=0;j<i;j++) { if(tab[0][j] == 0 && tab[1][j] == 0) r++; else if(tab[0][j] == 0 && tab[2][j] == 0) r++; else if(tab[1][j] == 0 && tab[2][j] == 0) r++; else if(tab[0][j] == 0 && tab[1][j] == tab[2][j]) r++; else if(tab[1][j] == 0 && tab[0][j] == tab[2][j]) r++; else if(tab[2][j] == 0 && tab[0][j] == tab[1][j]) r++; else if(tab[0][j] == tab[1][j] && tab[1][j] == tab[2][j]) r++; } c=0; } printf("%d\n",r); return 0; } |