BZOJ 1511: [POI2006]OKR-Periods of Words
阿新 • • 發佈:2018-10-31
pro esp 直接 div long ace zoj while period
題目描述
/* 問題即求某一前綴A=XYZX的最小X的長度,可根據KMP中的nxt求出 但直接做會超時 考慮已經求過的某一串A是另一個串B的前綴,那麽在求B的對答案的貢獻時會重復一次求A的過程 所以可以在求完A之後更新A的nxt為求出X的位置,這樣求B時就會直接跳到X的位置 */ #include<complex> #include<cstdio> using namespace std; const int N=1e6+7; int n; long long ans; int nxt[N]; char s[N]; int main() { scanf("%d%s",&n,s+1); int j=0; for(int i=2;i<=n;i++) { while(j && s[i]!=s[j+1])j=nxt[j]; if(s[i]==s[j+1])j++; nxt[i]=j; } for(int i=1;i<=n;i++) { int j=i; while(nxt[j])j=nxt[j]; if(nxt[i])nxt[i]=j; ans+=i-j; } printf("%lld\n",ans); return 0; }
BZOJ 1511: [POI2006]OKR-Periods of Words