結果
問題 | No.515 典型LCP |
ユーザー | WA_TLE |
提出日時 | 2017-05-05 23:31:14 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 418 ms / 1,000 ms |
コード長 | 1,010 bytes |
コンパイル時間 | 971 ms |
コンパイル使用メモリ | 74,016 KB |
実行使用メモリ | 16,512 KB |
最終ジャッジ日時 | 2024-09-14 10:01:40 |
合計ジャッジ時間 | 6,458 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 418 ms
16,512 KB |
testcase_01 | AC | 414 ms
16,332 KB |
testcase_02 | AC | 337 ms
10,624 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 336 ms
10,496 KB |
testcase_06 | AC | 387 ms
10,624 KB |
testcase_07 | AC | 318 ms
10,624 KB |
testcase_08 | AC | 391 ms
10,624 KB |
testcase_09 | AC | 316 ms
11,264 KB |
testcase_10 | AC | 141 ms
11,008 KB |
testcase_11 | AC | 135 ms
11,264 KB |
testcase_12 | AC | 134 ms
11,136 KB |
testcase_13 | AC | 378 ms
10,496 KB |
testcase_14 | AC | 27 ms
10,624 KB |
testcase_15 | AC | 315 ms
10,368 KB |
testcase_16 | AC | 393 ms
10,368 KB |
ソースコード
#include<string> #include<iostream> #include<cstdio> #include<vector> #include<algorithm> #include<functional> using namespace std; typedef long long int llint; #define pub push_back #define mp make_pair #define fir first #define sec second const int big=((llint)1<<30); const llint mod=91254389315231;//そすー const int lol=101; //aabbaabb // int main(void){ llint x,y,n,i,gen,bmax,bmin,q,j,m,d,k,qx,qy,ans=0; vector<string> a; vector<vector<llint>> rolh; cin>>n; a.resize(n); rolh.resize(n); for(i=0;i<n;i++){ cin>>a[i]; rolh[i].resize(a[i].size());gen=0; for(j=0;j<a[i].size();j++){ gen*=lol; gen+=a[i][j]; gen%=mod; rolh[i][j]=gen; } } cin>>m>>x>>d; for(k=1;k<=m;k++){ qx=(x/(n-1)); qy=(x%(n-1)); if(qx>qy){swap(qx,qy);} else{qy++;} x=(x+d)%(n*(n-1));bmax=min(rolh[qx].size(),rolh[qy].size());bmin=-1; while(bmax-bmin>1){ gen=(bmax+bmin)/2; if(rolh[qx][gen]!=rolh[qy][gen]){ bmax=gen; } else{ bmin=gen; } } ans+=bmax; } cout<<ans<<endl; return 0; }