結果
問題 | No.765 ukuku 2 |
ユーザー | beet |
提出日時 | 2019-02-22 18:19:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,670 bytes |
コンパイル時間 | 2,015 ms |
コンパイル使用メモリ | 202,100 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-03 16:58:12 |
合計ジャッジ時間 | 8,674 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | AC | 6 ms
5,376 KB |
testcase_34 | AC | 6 ms
5,376 KB |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
ソースコード
#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()); if(s==t){ cout<<n-1<<endl; return 0; } assert(0); 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))+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)){ chmax(ans,l*2+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+2+p,i+2+m); auto y=rht.find(n-i+p,n-i+m); if(x==y) l=m; else r=m; } chmax(ans,l*2+1); 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+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; } 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+2))+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+2))){ chmax(ans,l*2+2); continue; } int pl=l,pr=r; { l=pl;r=pr; int p=l; r=min(i,n-(i+3))+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; } chmax(ans,l*2+2); pl=l;pr=r; } { l=pl;r=pr; int p=l; r=min(i-1,n-(i+2))+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; } chmax(ans,l*2+2); pl=l;pr=r; } } cout<<ans<<endl; return 0; }