시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB320806328.125%

문제

A word consisting of n lower-case letters of the English alphabet ('a'-'z') is given. We would like to choose a non-empty contiguous (i.e. one-piece) fragment of the word so as to maximise the difference in the number of occurrences of the most and the least frequent letter in the fragment. We are assuming that the least frequent letter has to occur at least once in the resulting fragment. In particular, should the fragment contain occurrences of only one letter, then the most and the least frequent letter in it coincide.

 

입력

The first line of the standard input holds one integer n (1 ≤ n ≤ 1,000,000) that denotes the length of the word. The second line holds a word consisting of n lower-case letters of the English alphabet.

 

출력

The first and only line of the standard output is to hold a single integer, equal to the maximum difference in the number of occurrences of the most and the least frequent letter that is attained in some non-empty contiguous fragment of the input word.

 

예제 입력 1

10
aabbaaabab

예제 출력 1

3

힌트

The fragment that attains the difference of 3 in the number of occurrences of a and b is aaaba.