結果
問題 | No.465 PPPPPPPPPPPPPPPPAPPPPPPPP |
ユーザー | kmjp |
提出日時 | 2016-12-16 23:17:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,530 bytes |
コンパイル時間 | 1,918 ms |
コンパイル使用メモリ | 179,992 KB |
実行使用メモリ | 68,692 KB |
最終ジャッジ日時 | 2024-05-08 00:30:17 |
合計ジャッジ時間 | 4,206 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 14 ms
11,392 KB |
testcase_06 | AC | 70 ms
45,256 KB |
testcase_07 | AC | 14 ms
11,520 KB |
testcase_08 | AC | 68 ms
43,708 KB |
testcase_09 | AC | 103 ms
55,108 KB |
testcase_10 | AC | 99 ms
55,744 KB |
testcase_11 | AC | 195 ms
66,364 KB |
testcase_12 | AC | 145 ms
48,956 KB |
testcase_13 | AC | 91 ms
37,488 KB |
testcase_14 | AC | 131 ms
56,404 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 68 ms
45,516 KB |
testcase_21 | AC | 130 ms
68,692 KB |
32_ratsliveonnoevilstar.txt | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- struct PalindromicTree { struct node { map<char,int> next; int len, sufflink,num,first; }; string S; vector<node> V; int n,s; // num,suff bool add(int pos) { char ch=S[pos]; int c=s, cl=0; while(1) { cl=V[c].len; if(pos-1-cl>=0 && S[pos-1-cl]==ch) break; c=V[c].sufflink; } if(V[c].next.count(ch)) { s = V[c].next[ch]; return false; } s=++n; V[n].len=V[c].len+2; V[n].first=pos; V[c].next[ch]=n; if(V[n].len==1) { // even length V[n].sufflink=2; V[n].num=1; return true; } while(1) { c=V[c].sufflink; cl=V[c].len; if(pos-1-cl>=0 && S[pos-1-cl]==ch) { V[n].sufflink=V[c].next[ch]; break; } } V[n].num=1+V[V[n].sufflink].num; return true; } void init(string S) { this->S=S; V.clear(); V.resize(S.size()+10); n=s=2; V[1].first=V[2].first=-1; V[1].len=-1; V[2].len=0; V[1].sufflink=V[2].sufflink=1; } }; int L; string S; int pnode[505050]; int pre[505050],post[505050],dp[505050]; int pl[505050],gpl[505050]; deque<pair<int,pair<int,int>>> G,G1,G2; void solve() { int i,j,k,l,r,x,y,m=0; string s; cin>>S; S="0"+S; L=S.size(); PalindromicTree pt; pt.init(S); FOR(i,L) { pt.add(i); pnode[i]=pt.s; pre[i]=(pt.V[pnode[i]].len==i); } x=pnode[L-1]; while(x>=3) { post[L-pt.V[x].len]=1; x=pt.V[x].sufflink; } for(i=L;i>=0;i--) post[i]+=post[i+1]; pre[0]=0; for(j=1;j<L;j++) { G1.clear(); FORR(g,G) if(g.first>1 && S[g.first-1]==S[j]) G1.push_back({g.first-1,g.second}); /*_P("%d G1:%d ::",j,G1.size()); FORR(g,G1) _P("%d:%d:%d ",g.first,g.second.first,g.second.second); _P("\n");*/ G2.clear(); r=-j; FORR(g,G1) { if(g.first-r!=g.second.first) { G2.push_back({g.first,{g.first-r,1}}); if(g.second.second>1) G2.push_back({g.first+g.second.first,{g.second.first,g.second.second-1}}); } else G2.push_back(g); r=g.first+(g.second.second-1)*g.second.first; } if(j>1 && S[j-1]==S[j]) { G2.push_back({j-1,{j-1-r,1}}); r=j-1; } G2.push_back({j,{j-r,1}}); /* _P("%d G2:%d ::",j,G2.size()); FORR(g,G2) _P("%d:%d:%d ",g.first,g.second.first,g.second.second); _P("\n");*/ G.clear(); auto gg=G2.front(); G2.pop_front(); FORR(g,G2) { if(g.second.first==gg.second.first) gg.second.second+=g.second.second; else G.push_back(gg), gg=g; } G.push_back(gg); /* _P("%d G::%d ::",j,G.size()); FORR(g,G) _P("%d:%d:%d ",g.first,g.second.first,g.second.second); _P("\n");*/ FORR(g,G) { r=g.first+(g.second.second-1)*g.second.first; int m=pre[r-1]; if(g.second.second>1 && g.first-g.second.first>0) m+=gpl[g.first-g.second.first]; if(g.second.first<g.first) gpl[g.first-g.second.first]=m; pl[j]+=m; } } //for(i=0;i<L;i++) _P("%d %d %d %d\n",i,pre[i],post[i],pl[i]); ll ret=0; for(i=1;i<L;i++) ret+=pl[i]*post[i+2]; cout<<ret<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); solve(); return 0; }