码迷,mamicode.com
首页 > 其他好文 > 详细

汕头市队赛 SRM13 T3

时间:2017-08-14 23:48:42      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:opened   ret   贪心   for   hid   tchar   位置   pac   string   

 

技术分享

这道题可以贪心 维护一个答案队列 枚举位置 每次将比当前位置大的队尾全部替代掉 记录删了多少了就好了

技术分享
#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<string>
#define LL long long
using namespace std;
const int M=1e7+7;
int n,k,cnt;
char s[M],q[M];
int main()
{
    freopen("del.in","r",stdin);
    freopen("del.out","w",stdout);
    scanf("%s",s+1);
    n=strlen(s+1); scanf("%d",&k);
    int v=n-k;
    q[++cnt]=s[1];
    for(int i=2;i<=n;i++){
        while(cnt&&q[cnt]>s[i]&&v) cnt--,v--;
        q[++cnt]=s[i];
    }
    for(int i=1;i<=k;i++) printf("%c",q[i]); printf("\n");
    return 0;
}
View Code

当然 序列自动机比较明显 但是会慢很多

技术分享
#include<cstdio>
#include<cstring>
const int M=1000007;
int n,k,c[M][26],deep[M];
char s[M];
void maxs(int& x,int y){if(x<y) x=y;}
int main(){
    freopen("del.in","r",stdin);
    freopen("del.out","w",stdout);
    scanf("%s",s+1); 
    n=strlen(s+1);
    scanf("%d",&k);
    for(int i=1;i<=n;i++){
        int now=s[i]-a; 
        for(int j=i;j&&!c[j][now];c[j--][now]=i+1);
    }
    for(int i=n;i>=1;i--){
        for(int j=0;j<26;j++){
            int v=c[i][j];
            if(v) maxs(deep[i],deep[v]+1);
        }
    }
    int now=1;
    for(int l=k;l;l--){
        for(int j=0;j<26;j++){
            int v=c[now][j];
            if(v&&deep[v]>=l-1){
                now=v;
                putchar(a+j);
                break;
            }
        }
    }
    return 0;
}
View Code

 

汕头市队赛 SRM13 T3

标签:opened   ret   贪心   for   hid   tchar   位置   pac   string   

原文地址:http://www.cnblogs.com/lyzuikeai/p/7360454.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!