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
#include <iostream>
#include <map>
#include <string>

using namespace std;

bool zba_correct(const map<char,int> &mem)
{
	map<char, int>::const_iterator it;
	for(it=mem.begin();it!=mem.end();++it)
	{
		if (it != mem.begin() && it->second != mem.begin()->second)
			return false;
	}
	return true;

}

int solve_zba(const string& input, int startPos, map<string, bool> &words)
{
	int result = 0;
	map<char, int> mem;
	for(int i=startPos;i<input.length();++i)
	{
		++mem[input[i]];
		if (zba_correct(mem)) {
			string word = input.substr(startPos, i - startPos + 1);
			if (true || !words[word]) {
				++result;
				words[input.substr(startPos, i - startPos + 1)] = true;
			}
		}
	}
	return result;
}

void solve_zba(const string& input)
{
	int result = 0;
	map<string, bool> words;
	for (int i = 0; i < input.length(); ++i)
		result += solve_zba(input, i, words);
	cout << result;
}	

int main()
{
	string input;
	cin >> input;
	solve_zba(input);
	return 0;
}