http://www.elijahqi.win/archives/2996
Description
小敏和小燕是一对好朋友。
他们正在玩一种神奇的游戏,叫Minecraft。
他们现在要做一个由方块构成的长条工艺品。但是方块现在是乱的,而且由于机器的要求,他们只能做到把这个工艺品最左边的方块放到最右边。
他们想,在仅这一个操作下,最漂亮的工艺品能多漂亮。
两个工艺品美观的比较方法是,从头开始比较,如果第i个位置上方块不一样那么谁的瑕疵度小,那么谁就更漂亮,如果一样那么继续比较第i+1个方块。如果全都一样,那么这两个工艺品就一样漂亮。
Input
第一行两个整数n,代表方块的数目。
第二行n个整数,每个整数按从左到右的顺序输出方块瑕疵度的值。
Output
一行n个整数,代表最美观工艺品从左到右瑕疵度的值。
Sample Input
10
10 9 8 7 6 5 4 3 2 1
Sample Output
1 10 9 8 7 6 5 4 3 2
HINT
【数据规模与约定】
对于20%的数据,n<=1000
对于40%的数据,n<=10000
对于100%的数据,n<=300000
把这个串复制一遍 然后建sam跑一下长度为n的串输出出来即可
#include<map>
#include<cstdio>
#include<algorithm>
#define rg register
#define N 1200010
using namespace std;
inline char gc(){
static char now[1<<16],*S,*T;
if (T==S){T=(S=now)+fread(now,1,1<<16,stdin);if (T==S) return EOF;}
return *S++;
}
inline int read(){
int x=0,f=1;char ch=gc();
while(ch<'0'||ch>'9') {if (ch=='-') f=-1;ch=gc();}
while(ch<='9'&&ch>='0') x=x*10+ch-'0',ch=gc();
return x*f;
}
map<int,int> ch[N];
map<int,int>::iterator it;
int root=1,last=1,cnt=1,fa[N],len[N],n,a[330000];
inline void insert1(int x){
int np=++cnt,p=last;fa[np]=p;len[np]=len[p]+1;
for (;p&&!ch[p][x];p=fa[p]) ch[p][x]=np;
if (!p) fa[np]=root;else{
int q=ch[p][x];if (len[p]+1==len[q]) fa[np]=q;else{
int nq=++cnt;ch[nq]=ch[q];fa[nq]=fa[q];fa[q]=fa[np]=nq;
len[nq]=len[p]+1;for (;p&&ch[p][x]==q;p=fa[p]) ch[p][x]=nq;
}
}last=np;
}
int main(){
// freopen("bzoj2882.in","r",stdin);
n=read();for (rg int i=1;i<=n;++i) a[i]=read(),insert1(a[i]);
for (rg int i=1;i<n;++i) insert1(a[i]);int p=root;
for (rg int i=1;i<=n;++i){
it=ch[p].begin();printf("%d ",(*it).first);p=(*it).second;
}
return 0;
}