#include <iostream>
#include <vector>
using namespace std;
string wytnij(string text, int start, int end)
{
string t = "";
for (int i = start; i <= end; i++)
{
t += text[i];
}
return t;
}
bool czyBalanced(string text)
{
if (text == "")
return false;
int a = 0;
int b = 0;
int c = 0;
for (char litera : text)
{
switch (litera)
{
default:
break;
case 'a':
a++;
break;
case 'b':
b++;
break;
case 'c':
c++;
break;
}
}
if (b == 0 && c == 0)
{
return true;
}
else if (a == 0 && c == 0)
{
return true;
}
else if (a == 0 && b == 0)
{
return true;
}
else if (a == 0)
{
return b == c;
}
else if (b == 0)
{
return a == c;
}
else if (c == 0)
{
return a == b;
}
else
{
return a == b && b == c;
}
}
bool czyJest(vector <string>* array, string value)
{
for (string temp : *array)
{
if (temp == value)
return true;
}
return false;
}
int main()
{
string text = "";
vector <string> balanced = {};
int wynik = 0;
int start = 0;
cin >> text;
int rozmiar = text.length();
for (int i = 0; i < rozmiar; i++)
{
for (int j = 0; j < rozmiar; j++)
{
if (czyBalanced(wytnij(text, i, j)))
{
if (!czyJest(&balanced, wytnij(text, i, j)))
{
if (wytnij(text, i, j) != "")
{
wynik++;
}
}
}
}
}
cout << wynik;
}
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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | #include <iostream> #include <vector> using namespace std; string wytnij(string text, int start, int end) { string t = ""; for (int i = start; i <= end; i++) { t += text[i]; } return t; } bool czyBalanced(string text) { if (text == "") return false; int a = 0; int b = 0; int c = 0; for (char litera : text) { switch (litera) { default: break; case 'a': a++; break; case 'b': b++; break; case 'c': c++; break; } } if (b == 0 && c == 0) { return true; } else if (a == 0 && c == 0) { return true; } else if (a == 0 && b == 0) { return true; } else if (a == 0) { return b == c; } else if (b == 0) { return a == c; } else if (c == 0) { return a == b; } else { return a == b && b == c; } } bool czyJest(vector <string>* array, string value) { for (string temp : *array) { if (temp == value) return true; } return false; } int main() { string text = ""; vector <string> balanced = {}; int wynik = 0; int start = 0; cin >> text; int rozmiar = text.length(); for (int i = 0; i < rozmiar; i++) { for (int j = 0; j < rozmiar; j++) { if (czyBalanced(wytnij(text, i, j))) { if (!czyJest(&balanced, wytnij(text, i, j))) { if (wytnij(text, i, j) != "") { wynik++; } } } } } cout << wynik; } |
English