Different is Good (类似统计相同字母数)

简介: Different is Good (类似统计相同字母数)

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


The first line of the input contains an integer n (1 ≤ n ≤ 100 000) — the length of the string s.


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


Output


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.


Examples


Input


2 aa


Output

1


Input

4

koko


Output

2


Input

5

murat


Output

0


Note


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


题目分析,就是找有多少个字母重复,如果输入字母大于26,就输出-1,否则就判断重复的字母有几个答案就是这个统计数。


听懂了记得给个赞鼓励一下,码字不易,用爱发电。


上ac代码。

f58230e9f063709cf3167704f4efdf14.gif


有事你就q我;QQ2917366383


学习算法

 

#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
int main()
{
  int t;cin>>t;int d=0;
  char a[1000000];int b[300];
  for(int i=1;i<=t;i++)
  {
    cin>>a[i];
  }
    for(int i=1;i<=26;i++)
  {
    b[i]=0;
  }
  if(t>26)
  {
      cout<<"-1"<<endl;
      return 0;
  }
else
  {
      for(int i=1;i<=t;i++)
      {
          if(b[a[i]-'A'+1]==0)
          b[a[i]-'A'+1]=1;
          else
          d++;
      }
  }
  cout<<d<<endl;
}
相关文章
|
8天前
|
Go
PTA-统计一行文本的单词个数
统计一行文本的单词个数
16 2
|
8天前
|
算法 Java C++
统计单词数
统计单词数
38 0
|
8天前
PTA-统计字符出现次数
编写程序统计字符串中特定字符出现次数。输入包括一行字符串(少于80字符)和一个字符,输出该字符在字符串中出现的次数。示例:输入&quot;programming is More fun!&quot;和&#39;m&#39;,输出为2。代码实现:`a=input(); b=input(); print(a.count(b))`。
39 2
|
8天前
数字字符统计
数字字符统计
10 0
|
10月前
1187:统计字符数
1187:统计字符数
R7-2 统计字符[2]
R7-2 统计字符[2]
68 0
|
Serverless C++
C/C++编程题之字符个数统计
C/C++编程题之字符个数统计
037.统计文件的字符数
037.统计文件的字符数
71 0
|
缓存 C语言
练习12—统计特定字符个数
练习12—统计特定字符个数
|
缓存 分布式计算
六十四、Spark-分别统计各个单词个数及特殊字符总个数
六十四、Spark-分别统计各个单词个数及特殊字符总个数
六十四、Spark-分别统计各个单词个数及特殊字符总个数

热门文章

最新文章