結果
問題 | No.765 ukuku 2 |
ユーザー | beet |
提出日時 | 2019-02-22 18:09:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,794 bytes |
コンパイル時間 | 2,057 ms |
コンパイル使用メモリ | 207,192 KB |
実行使用メモリ | 10,112 KB |
最終ジャッジ日時 | 2024-11-24 19:22:52 |
合計ジャッジ時間 | 4,071 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | AC | 1 ms
5,248 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | AC | 1 ms
5,248 KB |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | WA | - |
testcase_31 | AC | 34 ms
8,320 KB |
testcase_32 | WA | - |
testcase_33 | AC | 28 ms
9,984 KB |
testcase_34 | AC | 28 ms
9,856 KB |
testcase_35 | AC | 44 ms
9,984 KB |
testcase_36 | AC | 45 ms
10,112 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 25 ms
8,576 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 31 ms
8,832 KB |
testcase_45 | AC | 49 ms
9,216 KB |
testcase_46 | AC | 37 ms
8,704 KB |
testcase_47 | AC | 36 ms
9,728 KB |
testcase_48 | AC | 36 ms
9,472 KB |
testcase_49 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} struct RollingHash{ using ull = unsigned long long; vector<ull> hash,p; RollingHash(){} RollingHash(const string &s,ull B=1000000007LL){ int n=s.size(); hash.assign(n+1,0); p.assign(n+1,1); for(int i=0;i<n;i++){ hash[i+1]=hash[i]*B+s[i]; p[i+1]=p[i]*B; } } //S[l, r) ull find(int l,int r){ return hash[r]-hash[l]*p[r-l]; } }; //INSERT ABOVE HERE signed main(){ string s; cin>>s; int n=s.size(); string t(s); reverse(t.begin(),t.end()); RollingHash rhs(s),rht(t); int ans=0; // odd for(int i=0;i<n;i++){ int l=0,r=min(i,n-i)+1; while(l+1<r){ int m=(l+r)>>1; auto x=rhs.find(i+1,i+1+m); auto y=rht.find(n-i,n-i+m); if(x==y) l=m; else r=m; } if(l==min(i,n-i)){ if(l*2+1<n) chmax(ans,l*2+1); else chmax(ans,n-1); continue; } int pl=l,pr=r; { l=pl;r=pr; int p=l; r=min(i,n-(i+1))+1; while(l+1<r){ int m=(l+r)>>1; auto x=rhs.find(i+2+p,i+2+m); auto y=rht.find(n-i+p,n-i+m); if(x==y) l=m; else r=m; } //cout<<i<<":"<<l<<endl; chmax(ans,l*2+1); pl=l;pr=r; } { l=pl;r=pr; int p=l; r=min(i-1,n-i)+1; while(l+1<r){ int m=(l+r)>>1; auto x=rhs.find(i+1+p,i+1+m); auto y=rht.find(n-i+1+p,n-i+1+m); if(x==y) l=m; else r=m; } //cout<<i<<":"<<l<<endl; chmax(ans,l*2+1); pl=l;pr=r; } } // even for(int i=0;i+1<n;i++){ if(s[i]!=s[i+1]) continue; int l=0,r=min(i,n-(i+1))+1; while(l+1<r){ int m=(l+r)>>1; auto x=rhs.find(i+2,i+2+m); auto y=rht.find(n-i,n-i+m); if(x==y) l=m; else r=m; } if(l==min(i,n-(i+1))){ if(l*2+2<n) chmax(ans,l*2+2); else chmax(ans,n-1); continue; } int pl=l,pr=r; { l=pl;r=pr; int p=l; r=min(i,n-(i+2))+1; while(l+1<r){ int m=(l+r)>>1; auto x=rhs.find(i+3+p,i+3+m); auto y=rht.find(n-i+p,n-i+m); if(x==y) l=m; else r=m; } //cout<<i<<":"<<l<<endl; chmax(ans,l*2); pl=l;pr=r; } { l=pl;r=pr; int p=l; r=min(i-1,n-(i+1))+1; while(l+1<r){ int m=(l+r)>>1; auto x=rhs.find(i+2+p,i+2+m); auto y=rht.find(n-i+1+p,n-i+1+m); if(x==y) l=m; else r=m; } //cout<<i<<":"<<l<<endl; chmax(ans,l*2); pl=l;pr=r; } } cout<<ans<<endl; return 0; }