P1368 工艺

Posted y2823774827y

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1368 工艺相关的知识,希望对你有一定的参考价值。

题目

P1368 工艺
你好水题

做法

备份一下原数组,然后插入,直接输出贪心每位最小的就好了

My complete code

再见水题

#include<map>
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<string>
using namespace std;
typedef int LL;
const LL maxn=1000000;
inline LL Read(){
    LL x(0),f(1);char c=getchar();
    while(c<'0'||c>'9'){if(c=='-')f=-1;c=getchar();}
    while(c>='0'&&c<='9')x=(x<<3)+(x<<1)+c-'0',c=getchar();
    return x*f;
}
LL n,nod=1,lst=1;
LL a[maxn];
struct SAM{
    LL fail,len;
    map<LL,LL> son;
}S[maxn];
inline void Insert(LL c){
    LL np=++nod,p=lst; lst=nod;
    S[np].len=S[p].len+1;
    while(p&&S[p].son[c]==0){
        S[p].son[c]=np;
        p=S[p].fail;
    }
    if(!p)
        S[np].fail=1;
    else{
        LL q=S[p].son[c];
        if(S[q].len==S[p].len+1)
            S[np].fail=q;
        else{
            LL nq=++nod; S[nq].len=S[p].len+1;
            S[nq].son=S[q].son;
            S[nq].fail=S[q].fail;
            S[q].fail=S[np].fail=nq;
            while(p&&S[p].son[c]==q){
                S[p].son[c]=nq;
                p=S[p].fail;
            }
        }
    }
}
int main(){
    n=Read();
    for(LL i=1;i<=n;++i)
        a[i]=Read();
    for(LL i=1;i<n;++i)
        a[i+n]=a[i];
    for(LL i=1;i<2*n;++i)
        Insert(a[i]);
    LL now(1);
    for(LL i=1;i<=n;++i){
        printf("%d ",S[now].son.begin()->first);
        now=S[now].son.begin()->second;
    }
    return 0;
}

以上是关于P1368 工艺的主要内容,如果未能解决你的问题,请参考以下文章

洛谷P1368 均分纸牌(加强版)

p1368[扑街]广场铺砖

[ CodeVS冲杯之路 ] P1368

洛谷P1368 均分纸牌(加强版) [2017年6月计划 ]

《代码大全》阅读笔记-34-软件工艺的话题

P5729 深基5.例7工艺品制作