A10433 | Different is Good
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
输入格式
The first line of the input contains an integer $n$ ( $1<=n<=100000$ ) — the length of the string $s$ .
The second line contains the string $s$ of length $n$ consisting of only lowercase English letters.
The second line contains the string $s$ of length $n$ consisting of only lowercase English letters.
输出格式
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.
输入输出样例
输入 #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".
In the second sample, one may change the first character to 'a' and second character to 'b', so the string becomes "abko".
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted