zoukankan      html  css  js  c++  java
  • Spoj SUBLEX

    Dicription

    Little Daniel loves to play with strings! He always finds different ways to have fun with strings! Knowing that, his friend Kinan decided to test his skills so he gave him a string S and asked him Q questions of the form:


    If all distinct substrings of string S were sorted lexicographically, which one will be the K-th smallest?


    After knowing the huge number of questions Kinan will ask, Daniel figured out that he can't do this alone. Daniel, of course, knows your exceptional programming skills, so he asked you to write him a program which given S will answer Kinan's questions.

    Example:


    S = "aaa" (without quotes)
    substrings of S are "a" , "a" , "a" , "aa" , "aa" , "aaa". The sorted list of substrings will be:
    "a", "aa", "aaa".

    Input

    In the first line there is Kinan's string S (with length no more than 90000 characters). It contains only small letters of English alphabet. The second line contains a single integer Q (Q <= 500) , the number of questions Daniel will be asked. In the next Q lines a single integer K is given (0 < K < 2^31).

    Output

    Output consists of Q lines, the i-th contains a string which is the answer to the i-th asked question.

    Example

    Input:
    aaa
    2
    2
    3

    Output: aa
    aaa

    Edited: Some input file contains garbage at the end. Do not process them.

    建个后缀自动机之后,记录一下每个节点能到的节点数,然后询问的时候一遍dfs就行了。

    #include<iostream>
    #include<cstdio>
    #include<cstdlib>
    #include<cmath>
    #include<cstring>
    #include<algorithm>
    #define ll long long
    #define maxn 400005
    using namespace std;
    int f[maxn],ch[maxn][26];
    int l[maxn],siz[maxn],n;
    int m,q,pre=1,cnt=1,rt[maxn];
    int a[maxn],c[maxn],tot[maxn];
    char s[maxn];
    
    inline void ins(int x,int y){
    	int p=pre,np=++cnt;
    	pre=np,l[np]=l[p]+1;
    	rt[np]=y+1;
    	
    	for(;p&&!ch[p][x];p=f[p]) ch[p][x]=np;
    	if(!p) f[np]=1;
    	else{
    		int q=ch[p][x];
    		if(l[q]==l[p]+1) f[np]=q;
    		else{
    			int nq=++cnt;
    			l[nq]=l[p]+1;
    			memcpy(ch[nq],ch[q],sizeof(ch[q]));
    			f[nq]=f[q];
    			f[q]=f[np]=nq;
    			for(;ch[p][x]==q;p=f[p]) ch[p][x]=nq;
    		}
    	}
    }
    
    void dfs(int x){
    	tot[x]=siz[x]=1;
    	for(int i=0;i<26;i++) if(ch[x][i]){
    		if(!siz[ch[x][i]]) dfs(ch[x][i]);
    		tot[x]+=tot[ch[x][i]];
    	}
    }
    
    inline void build(){
    	n=strlen(s);
    	for(int i=0;i<n;i++) ins(s[i]-'a',i);
    	for(int i=1;i<=cnt;i++) c[l[i]]++;
    	for(int i=n;i>=0;i--) c[i]+=c[i+1];
    	for(int i=1;i<=cnt;i++) a[c[l[i]]--]=i;
    	for(int i=1;i<=cnt;i++){
    		int now=a[i];
    		rt[f[now]]=max(rt[f[now]],rt[now]);
    	}
    	
    	dfs(1);
    //	for(int i=1;i<=cnt;i++) cout<<tot[i]<<' '<<siz[i]<<endl;
    }
    
    void dfs2(int x){
    	if(m<=siz[x]){
    		m=0,puts("");
    		return;
    	}
    	
    	m-=siz[x];
    	
    	for(int i=0;i<26;i++){
    		int to=ch[x][i];
    		if(m<=tot[to]) putchar('a'+i),dfs2(to);
    		else m-=tot[to];
    		
    		if(!m) return;
    	}
    }
    
    inline void solve(){
    	dfs2(1);
    }
    
    int main(){
    	scanf("%s",s);
    	build();
    	
    	scanf("%d",&q);
    	while(q--){
    		scanf("%d",&m),m++;
    		solve();
    	}
    	
    	return 0;
    }
    

      

  • 相关阅读:
    一个挺好用的自己写的小插件(用与把一般的图片转换成预制)——UNITY3D
    ios网络学习------4 UIWebView的加载本地数据的三种方式
    ios网络学习------6 json格式数据的请求处理
    OC 解决NSArray、NSDictionary直接打印中文出现乱码的问题
    网络数据的XML解析
    iOS对象序列化
    iOS数据存取和对象序列化
    iOS NSDictionary、NSData、JSON数据类型相互转换
    IOS四种保存数据的方式
    ios开发值json数据文件的存取
  • 原文地址:https://www.cnblogs.com/JYYHH/p/8461531.html
Copyright © 2011-2022 走看看