結果
問題 | No.515 典型LCP |
ユーザー | WA_TLE |
提出日時 | 2017-05-05 23:09:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 706 bytes |
コンパイル時間 | 858 ms |
コンパイル使用メモリ | 76,332 KB |
実行使用メモリ | 11,904 KB |
最終ジャッジ日時 | 2024-09-14 09:09:25 |
合計ジャッジ時間 | 3,983 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 140 ms
11,904 KB |
testcase_01 | AC | 179 ms
6,528 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#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=1000000007; //aabbaabb // int main(void){ llint x,y,n,i,q,m,d,k,qx,qy,ans=0; vector<string> a; cin>>n; a.resize(n); for(i=0;i<n;i++){ cin>>a[i]; } 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));i=0; while(-1){ if(a[qx].size()<=i||a[qx].size()<=i||a[qx][i]!=a[qy][i]){break;} ans++;i++; } } cout<<ans<<endl; return 0; }