A11592 | Phone Numbers
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
And where the are the phone numbers?
You are given a string $s$ consisting of lowercase English letters and an integer $k$ . Find the lexicographically smallest string $t$ of length $k$ , such that its set of letters is a subset of the set of letters of $s$ and $s$ is lexicographically smaller than $t$ .
It's guaranteed that the answer exists.
Note that the set of letters is a set, not a multiset. For example, the set of letters of abadaba is ${a,b,d}$ .
String $p$ is lexicographically smaller than string $q$ , if $p$ is a prefix of $q$ , is not equal to $q$ or there exists $i$ , such that $p_{i}<q_{i}$ and for all $j<i$ it is satisfied that $p_{j}=q_{j}$ . For example, abc is lexicographically smaller than abcd , abd is lexicographically smaller than abec, afa is not lexicographically smaller than ab and a is not lexicographically smaller than a.
You are given a string $s$ consisting of lowercase English letters and an integer $k$ . Find the lexicographically smallest string $t$ of length $k$ , such that its set of letters is a subset of the set of letters of $s$ and $s$ is lexicographically smaller than $t$ .
It's guaranteed that the answer exists.
Note that the set of letters is a set, not a multiset. For example, the set of letters of abadaba is ${a,b,d}$ .
String $p$ is lexicographically smaller than string $q$ , if $p$ is a prefix of $q$ , is not equal to $q$ or there exists $i$ , such that $p_{i}<q_{i}$ and for all $j<i$ it is satisfied that $p_{j}=q_{j}$ . For example, abc is lexicographically smaller than abcd , abd is lexicographically smaller than abec, afa is not lexicographically smaller than ab and a is not lexicographically smaller than a.
输入格式
The first line of input contains two space separated integers $n$ and $k$ ( $1<=n,k<=100000$ ) — the length of $s$ and the required length of $t$ .
The second line of input contains the string $s$ consisting of $n$ lowercase English letters.
The second line of input contains the string $s$ consisting of $n$ lowercase English letters.
输出格式
Output the string $t$ conforming to the requirements above.
It's guaranteed that the answer exists.
It's guaranteed that the answer exists.
输入输出样例
输入 #1
3 3 abc
输出 #1
aca
输入 #2
3 2 abc
输出 #2
ac
输入 #3
3 3 ayy
输出 #3
yaa
输入 #4
2 3 ba
输出 #4
baa
In the first example the list of strings $t$ of length 3, such that the set of letters of $t$ is a subset of letters of $s$ is as follows: aaa, aab, aac, aba, abb, abc, aca, acb, $...$ . Among them, those are lexicographically greater than abc: aca, acb, $...$ . Out of those the lexicographically smallest is aca.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted