結果
問題 | No.2858 Make a Palindrome |
ユーザー | kmjp |
提出日時 | 2024-08-27 20:25:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 573 ms / 3,000 ms |
コード長 | 3,577 bytes |
コンパイル時間 | 2,622 ms |
コンパイル使用メモリ | 212,864 KB |
実行使用メモリ | 57,316 KB |
最終ジャッジ日時 | 2024-08-27 20:26:09 |
合計ジャッジ時間 | 11,522 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 573 ms
6,816 KB |
testcase_01 | AC | 171 ms
6,944 KB |
testcase_02 | AC | 172 ms
6,944 KB |
testcase_03 | AC | 169 ms
6,940 KB |
testcase_04 | AC | 169 ms
6,940 KB |
testcase_05 | AC | 177 ms
6,940 KB |
testcase_06 | AC | 107 ms
6,944 KB |
testcase_07 | AC | 109 ms
6,944 KB |
testcase_08 | AC | 107 ms
6,944 KB |
testcase_09 | AC | 107 ms
6,940 KB |
testcase_10 | AC | 124 ms
6,944 KB |
testcase_11 | AC | 124 ms
6,944 KB |
testcase_12 | AC | 127 ms
6,940 KB |
testcase_13 | AC | 124 ms
6,940 KB |
testcase_14 | AC | 125 ms
6,940 KB |
testcase_15 | AC | 71 ms
6,944 KB |
testcase_16 | AC | 73 ms
6,940 KB |
testcase_17 | AC | 73 ms
6,944 KB |
testcase_18 | AC | 73 ms
6,940 KB |
testcase_19 | AC | 74 ms
6,940 KB |
testcase_20 | AC | 101 ms
38,392 KB |
testcase_21 | AC | 119 ms
53,820 KB |
testcase_22 | AC | 63 ms
27,464 KB |
testcase_23 | AC | 101 ms
38,444 KB |
testcase_24 | AC | 91 ms
34,132 KB |
testcase_25 | AC | 82 ms
31,400 KB |
testcase_26 | AC | 79 ms
32,584 KB |
testcase_27 | AC | 121 ms
50,928 KB |
testcase_28 | AC | 87 ms
33,812 KB |
testcase_29 | AC | 117 ms
50,492 KB |
testcase_30 | AC | 124 ms
49,956 KB |
testcase_31 | AC | 130 ms
49,556 KB |
testcase_32 | AC | 123 ms
50,700 KB |
testcase_33 | AC | 125 ms
51,456 KB |
testcase_34 | AC | 122 ms
48,736 KB |
testcase_35 | AC | 134 ms
49,652 KB |
testcase_36 | AC | 123 ms
53,588 KB |
testcase_37 | AC | 123 ms
51,160 KB |
testcase_38 | AC | 120 ms
57,316 KB |
testcase_39 | AC | 126 ms
53,492 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #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 FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int T; int N,M; string S; using VT = string; struct RollingHash { static const ll mo0=1000000021,mo1=1000000009; static ll mul0,mul1; static const ll add0=1000010007, add1=1003333331; static vector<ll> pmo[2]; VT s; int l; vector<ll> hash_[2]; void init(VT s) { this->s=s; l=s.size(); int i,j; hash_[0]=hash_[1]=vector<ll>(1,0); if(!mul0) mul0=10009+(((ll)&mul0+time(NULL))>>5)%1259,mul1=10007+(time(NULL)+((ll)&mul1)>>5)%2257; if(pmo[0].empty()) pmo[0].push_back(1),pmo[1].push_back(1); FOR(i,l) hash_[0].push_back((hash_[0].back()*mul0+add0+s[i])%mo0); FOR(i,l) hash_[1].push_back((hash_[1].back()*mul1+add1+s[i])%mo1); } pair<ll,ll> hash(int l,int r) { // s[l..r] if(l>r) return make_pair(0,0); while(pmo[0].size()<r+2) pmo[0].push_back(pmo[0].back()*mul0%mo0), pmo[1].push_back(pmo[1].back()*mul1%mo1); return make_pair((hash_[0][r+1]+(mo0-hash_[0][l]*pmo[0][r+1-l]%mo0))%mo0, (hash_[1][r+1]+(mo1-hash_[1][l]*pmo[1][r+1-l]%mo1))%mo1); } pair<ll,ll> hash(VT s) { init(s); return hash(0,s.size()-1); } static pair<ll,ll> concat(pair<ll,ll> L,pair<ll,ll> R,int RL) { // hash(L+R) RL=len-of-R while(pmo[0].size()<RL+2) pmo[0].push_back(pmo[0].back()*mul0%mo0), pmo[1].push_back(pmo[1].back()*mul1%mo1); return make_pair((R.first + L.first*pmo[0][RL])%mo0,(R.second + L.second*pmo[1][RL])%mo1); } }; vector<ll> RollingHash::pmo[2]; ll RollingHash::mul0,RollingHash::mul1; RollingHash rh1,rh2; int maxpal(string v) { string w=v; reverse(ALL(w)); rh1.init(v); rh2.init(w); int i; for(i=0;i+M<=v.size();i++) { if(rh1.hash(i,i+M-1)==rh2.hash(v.size()-1-(i+M-1),v.size()-1-i)) return 1; } for(i=0;i+M+1<=v.size();i++) { if(rh1.hash(i,i+M-1+1)==rh2.hash(v.size()-1-(i+M-1+1),v.size()-1-i)) return 1; } return 0; } void solve() { int i,j,k,l,r,x,y; string s; cin>>T; while(T--) { cin>>N>>M>>S; if(maxpal(S)) { cout<<1<<endl; continue; } if(maxpal(S+S)) { cout<<2<<endl; continue; } if(maxpal(S+S+S)) { cout<<3<<endl; continue; } S=S+S+S; rh1.init(S); s=S; reverse(ALL(s)); rh2.init(s); ll mi=1<<30; for(i=N;i<2*N;i++) { if(rh1.hash(i-N,i+N)==rh2.hash(3*N-1-(i+N),3*N-1-(i-N))) { ll L,R; if(M%2==1) { L=i-M/2+(1LL<<30)*N; R=i+M/2+(1LL<<30)*N;; } else { L=i-(M+1)/2+(1LL<<30)*N; R=i+(M+1)/2+(1LL<<30)*N;; } L/=N; R/=N; mi=min(mi,R-L+1); } } for(i=N;i<2*N;i++) { if(rh1.hash(i-(N-1),i+N)==rh2.hash(3*N-1-(i+N),3*N-1-(i-(N-1)))) { ll L,R; if(M%2==0) { L=i-(M/2-1)+(1LL<<30)*N; R=i+M/2+(1LL<<30)*N;; } else { L=i-((M+1)/2-1)+(1LL<<30)*N; R=i+(M+1)/2+(1LL<<30)*N;; } L/=N; R/=N; mi=min(mi,R-L+1); } } if(mi==1<<30) mi=-1; cout<<mi<<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); cout.tie(0); solve(); return 0; }