A10623 | Dense Subsequence
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a string $s$ , consisting of lowercase English letters, and the integer $m$ .
One should choose some symbols from the given string so that any contiguous subsegment of length $m$ has at least one selected symbol. Note that here we choose positions of symbols, not the symbols themselves.
Then one uses the chosen symbols to form a new string. All symbols from the chosen position should be used, but we are allowed to rearrange them in any order.
Formally, we choose a subsequence of indices $1<=i_{1}<i_{2}<...<i_{t}<=|s|$ . The selected sequence must meet the following condition: for every $j$ such that $1<=j<=|s|-m+1$ , there must be at least one selected index that belongs to the segment $[j, j+m-1]$ , i.e. there should exist a $k$ from $1$ to $t$ , such that $j<=i_{k}<=j+m-1$ .
Then we take any permutation $p$ of the selected indices and form a new string $s_{ip1}s_{ip2}...\ s_{ipt}$ .
Find the lexicographically smallest string, that can be obtained using this procedure.
One should choose some symbols from the given string so that any contiguous subsegment of length $m$ has at least one selected symbol. Note that here we choose positions of symbols, not the symbols themselves.
Then one uses the chosen symbols to form a new string. All symbols from the chosen position should be used, but we are allowed to rearrange them in any order.
Formally, we choose a subsequence of indices $1<=i_{1}<i_{2}<...<i_{t}<=|s|$ . The selected sequence must meet the following condition: for every $j$ such that $1<=j<=|s|-m+1$ , there must be at least one selected index that belongs to the segment $[j, j+m-1]$ , i.e. there should exist a $k$ from $1$ to $t$ , such that $j<=i_{k}<=j+m-1$ .
Then we take any permutation $p$ of the selected indices and form a new string $s_{ip1}s_{ip2}...\ s_{ipt}$ .
Find the lexicographically smallest string, that can be obtained using this procedure.
输入格式
The first line of the input contains a single integer $m$ ( $1<=m<=100000$ ).
The second line contains the string $s$ consisting of lowercase English letters. It is guaranteed that this string is non-empty and its length doesn't exceed $100000$ . It is also guaranteed that the number $m$ doesn't exceed the length of the string $s$ .
The second line contains the string $s$ consisting of lowercase English letters. It is guaranteed that this string is non-empty and its length doesn't exceed $100000$ . It is also guaranteed that the number $m$ doesn't exceed the length of the string $s$ .
输出格式
Print the single line containing the lexicographically smallest string, that can be obtained using the procedure described above.
输入输出样例
输入 #1
3 cbabc
输出 #1
a
输入 #2
2 abcab
输出 #2
aab
输入 #3
3 bcabcbaccba
输出 #3
aaabb
In the first sample, one can choose the subsequence ${3}$ and form a string "a".
In the second sample, one can choose the subsequence ${1,2,4}$ (symbols on this positions are 'a', 'b' and 'a') and rearrange the chosen symbols to form a string "aab".
In the second sample, one can choose the subsequence ${1,2,4}$ (symbols on this positions are 'a', 'b' and 'a') and rearrange the chosen symbols to form a string "aab".
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted