CF672B.Different is Good

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 ss consisting of lowercase English letters. Since Kerem likes it when things are different, he wants all substrings of his string ss 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 ss 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.

输入格式

The first line of the input contains an integer nn ( 1<=n<=1000001<=n<=100000 ) — the length of the string ss .

The second line contains the string ss of length nn consisting of only lowercase English letters.

输出格式

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

输入输出样例

  • 输入#1

    2
    aa
    

    输出#1

    1
    
  • 输入#2

    4
    koko
    

    输出#2

    2
    
  • 输入#3

    5
    murat
    

    输出#3

    0
    

说明/提示

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".

首页