2331.Different is Good

Time Limit: 1s Memory Limit: 256MB

A wise man told Kerem "Different is good" once, so Kerem wants all things in his life to be different.

Kerem recently got a string s consisting of lowercase English letters. Since Kerem likes it when things are different, he wants all substrings of his string s to be distinct. Substring is a string formed by some number of consecutive characters of the string. For example, string "aba" has substrings "" (empty substring), "a", "b", "a", "ab", "ba", "aba".

If string s has at least two equal substrings then Kerem will change characters at some positions to some other lowercase English letters. Changing characters is a very tiring job, so Kerem want to perform as few changes as possible.

Your task is to find the minimum number of changes needed to make all the substrings of the given string distinct, or determine that it is impossible.

Input Format(From the terminal/stdin)

The first line of the input contains an integer n (1 \le n \le 100000)- the length of the string s.

The second line contains the string s of length n consisting of only lowercase English letters.

Output Format(To the terminal/stdout)

If it's impossible to change the string s such that all its substring are distinct print -1. Otherwise print the minimum required number of changes.

Sample Input 1

Copy
2
aa
 \n
  \n

Sample Output 1

Copy
1
 \n

Sample Input 2

Copy
4
koko
 \n
    \n

Sample Output 2

Copy
2
 \n

Sample Input 3

Copy
5
murat
 \n
     \n

Sample Output 3

Copy
0
 \n

Hints

In the first sample one of the possible solutions is to change the first character to 'b'.

In the second sample, one may change the first character to 'a' and second character to 'b', so the string becomes "abko".

Submit

请先 登录

© 2025 FAQs