【29.41%】【codeforces 724D】Dense Subsequence
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
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 ≤ i1 < i2 < … < it ≤ |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 ≤ ik ≤ j + m - 1.
Then we take any permutation p of the selected indices and form a new string sip1sip2… sipt.
Find the lexicographically smallest string, that can be obtained using this procedure.
Input
The first line of the input contains a single integer m (1 ≤ m ≤ 100 000).
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 100 000. It is also guaranteed that the number m doesn’t exceed the length of the string s.
Output
Print the single line containing the lexicographically smallest string, that can be obtained using the procedure described above.
Examples
input
3
cbabc
output
a
input
2
abcab
output
aab
input
3
bcabcbaccba
output
aaabb
Note
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”.
【题解】
假如m=3;
现在给了你一段序列
从1开始。
1-3里面必然要选一个
那么选什么呢?
肯定是选字典序最小的那个。
不然的话最后选出来的一定不是最优的
比如cab
你只能选a.
然后再从xiabiao[a]+1开始再选3个
cabbb
现在下标变成3
你需要从bbb中选择一个。当然还是选择最小的那个,这个时候你没得选了
只能选b.(记录字典序最大的变成了b)
但是为了节省时间。你需要尽量往后选。
比如cabbbzab
因为如果你选了第一个b
接下来就要从b,b,z这三个里面选一个最小的。
那还是b。。所以没有意义,直接从最后一个选开始选就好。
且
b z z z b
这样的数据如果不从最后一个b开始选。你会面临3个z的抉择。这下可就会错解了。
每次选定一个字母后,就尝试更新最大字典序的字母;
最后获得了最大字典序的字母key;
从’a’..’key’-1;按顺序添加到答案字符串的末尾;
对于key要单独处理。只有在m个m个地选的过程中不得不选key这个字符的时候才要选,即加到答案字符串末尾;
因为
假如key为b
aaabb小于aaabbb
即等于key的不能全选。那样可能会出错;
而之所以小于key的要全选
是因为
aabb小于abb
即从第一个不同的字母开始比较的。
和Pascal有点不一样。pascal是先比较长度。
#include <cstdio>
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
const int MAXN = 2e5;
using namespace std;
vector <int> a[30];
string s;
bool vis[MAXN] = { 0 };
int m;
void input(int &r)
{
r = 0;
char t = getchar();
while (!isdigit(t)) t = getchar();
while (isdigit(t)) r = r * 10 + t - '0', t = getchar();
}
int main()
{
//freopen("F:\\rush.txt", "r", stdin);
input(m);
cin >> s;
int len = s.size();
for (int i = 0; i <= len - 1; i++)
a[s[i] - 'a'].push_back(i);
int i,mx = 0;
for (i = 0; i <= len - m; i++)
{
for (int j = 0; j <= 25; j++)//从小到大可以肯定找的是字典序最小的。
{
int k = upper_bound(a[j].begin(), a[j].end(), i + m - 1) - a[j].begin();//upper_bound则尽量靠后
k--;
int len = a[j].size();
if (k >= 0 && k <= len-1 && a[j][k] >= i && a[j][k] <= i + m - 1)
{
mx = max(mx, j);//找到之后就尝试更新最大字典序
i = a[j][k];//等于它的位置就好第一层for会+1
vis[a[j][k]] = true;//记录这个位置必须选
break;//记录这个是为了方便控制输出mx字符
}
}
}
string ans = "";
for (int i = 0; i < mx; i++)
{
len = a[i].size();
for (int j = 0; j <= len - 1; j++)
ans += (i + 'a');
}
len = a[mx].size();
for (int j = 0; j <= len - 1; j++)
if (vis[a[mx][j]])
ans += (mx + 'a');
cout << ans << endl;
return 0;
}
【29.41%】【codeforces 724D】Dense Subsequence的更多相关文章
- 【 BowWow and the Timetable CodeForces - 1204A 】【思维】
题目链接 可以发现 十进制4 对应 二进制100 十进制16 对应 二进制10000 十进制64 对应 二进制1000000 可以发现每多两个零,4的次幂就增加1. 用string读入题目给定的二进制 ...
- 【35.29%】【codeforces 557C】Arthur and Table
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
- 【41.43%】【codeforces 560C】Gerald's Hexagon
time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
- 【39.29%】【codeforces 552E】Vanya and Brackets
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
- 【29.89%】【codeforces 734D】Anton and Chess
time limit per test4 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
- 【codeforces 29B】Traffic Lights
[题目链接]:http://codeforces.com/problemset/problem/29/B [题意] 一辆车; 让从A开到B; 然后速度是v; (只有在信号灯前面才能停下来..否则其他时 ...
- 【codeforces 415D】Mashmokh and ACM(普通dp)
[codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...
- 【搜索】【并查集】Codeforces 691D Swaps in Permutation
题目链接: http://codeforces.com/problemset/problem/691/D 题目大意: 给一个1到N的排列,M个操作(1<=N,M<=106),每个操作可以交 ...
- 【中途相遇法】【STL】BAPC2014 K Key to Knowledge (Codeforces GYM 100526)
题目链接: http://codeforces.com/gym/100526 http://acm.hunnu.edu.cn/online/?action=problem&type=show& ...
随机推荐
- 【Codeforces Round #432 (Div. 1) B】Arpa and a list of numbers
[链接]h在这里写链接 [题意] 定义bad list是一个非空的.最大公约数为1的序列.给定一个序列,有两种操作:花费x将一个元素删除.花费y将一个元素加1,问你将这个序列变为good list所需 ...
- 【MemSQL Start[c]UP 3.0 - Round 1 E】Desk Disorder
[链接]h在这里写链接 [题意] 有N个人. 2N个座位. 现在告诉你这N个人它们现在的座位.以及它们想去的座位. 每个人可以去它们想去的座位或者就站在原地不动. 新的座位和旧的座位,都不允许一个座位 ...
- Java Lock Example – ReentrantLock(java锁的例子)
Welcome to Java Lock example tutorial. Usually when working with multi-threaded environment, we use ...
- POS的一点杂笔
仅限于POS 仅限于POS 仅限于POS A 字母字符 N 数字 S 特殊字符 an 字母和数字字符 as 字母和特殊字符 ns 数字和特殊字符 ans 字母.数字和特殊字符 MM 月份 DD 日期 ...
- vivado中basic memory生成
vivado中basic memory生成
- AE地图查询
原文 AE地图查询 地图查询主要有两种查询:空间查询和属性查询 所用到知识点: 1 Cursor(游标)对象 本质上是一个指向数据的指针,本身不包含数据内容,提供一个连接到ROW对象或者要素对象(F ...
- <p><img src="http://img.blog.csdn.net/20150823142545135?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt=""></p>
/* 实现功能:用顺序表实现栈的各种操作 编译环境:Windows 64b,vc6.0 日期: 2015/7/20 作者:wtt561111 */ #define stack_max_num 10 # ...
- 【JAVA编码专题】UNICODE,GBK,UTF-8区别 分类: B1_JAVA 2015-02-10 21:07 153人阅读 评论(0) 收藏
简单来说,unicode,gbk和大五码就是编码的值,而utf-8,uft-16之类就是这个值的表现形式.而前面那三种编码是一兼容的,同一个汉字,那三个码值是完全不一样的.如"汉"的uncode值与g ...
- 什么是网站CDN服务,CDN加速原理?
转载:http://server.zzidc.com/fwqcjwt/728.html 摘要:在为您的网站打开速度发愁吗?您有没有发现有些大网站每天拥有几十万或者上百万,甚至几亿用户的访问,而且不同用 ...
- “locktype”enum type 类型重定义问题的解决
作者:朱金灿 来源:http://blog.csdn.net/clever101 使用ado来连接数据库,结果出现这样一些编译错误: 1>f:\c++pro\iocptser\debug\msa ...