結果
問題 | No.515 典型LCP |
ユーザー | ふっぴー |
提出日時 | 2017-05-05 22:47:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 792 bytes |
コンパイル時間 | 1,654 ms |
コンパイル使用メモリ | 168,588 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-09-14 08:53:50 |
合計ジャッジ時間 | 4,336 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
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<bits/stdc++.h> using namespace std; typedef long long ll; #define loop(i,a,b) for(i=a;i<b;i++) #define rloop(i,a,b) for(i=a;i>=b;i--) #define vi vector<int> #define vl vector<ll> #define vii vector< vector<int> > #define vll vector< vector<ll> > #define vs vector<string> const int inf=1000000001; const ll INF=1e16; #define MOD 1000000007 #define mod 1000000009 #define pi 3.14159265358979323846 int main(){ int n,i,j,k,l,x,d,m; cin>>n; vs s(n+1); loop(k,1,n+1){ cin>>s[k]; } cin>>m>>x>>d; ll sum=0; loop(k,1,m+1){ int cnt=0; i=(x/(n-1))+1; j=(x%(n-1))+1; if(i>j){ swap(i,j); }else{ j++; } loop(l,0,min(s[i].size(),s[j].size())){ if(s[i][l]==s[j][l]){ cnt++; }else{ break; } } x=(x+d)%(n*(n-1)); sum+=cnt; } cout<<sum<<endl; }