結果
問題 | No.515 典型LCP |
ユーザー | myanta |
提出日時 | 2017-05-08 23:51:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,096 bytes |
コンパイル時間 | 646 ms |
コンパイル使用メモリ | 48,000 KB |
実行使用メモリ | 14,244 KB |
最終ジャッジ日時 | 2024-09-14 17:39:48 |
合計ジャッジ時間 | 3,158 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 362 ms
13,312 KB |
testcase_03 | AC | 5 ms
10,752 KB |
testcase_04 | AC | 4 ms
10,548 KB |
testcase_05 | AC | 48 ms
10,716 KB |
testcase_06 | AC | 47 ms
10,752 KB |
testcase_07 | AC | 47 ms
10,628 KB |
testcase_08 | AC | 49 ms
10,688 KB |
testcase_09 | AC | 175 ms
12,620 KB |
testcase_10 | AC | 53 ms
14,200 KB |
testcase_11 | AC | 53 ms
14,080 KB |
testcase_12 | AC | 53 ms
14,176 KB |
testcase_13 | AC | 59 ms
10,740 KB |
testcase_14 | AC | 10 ms
12,912 KB |
testcase_15 | AC | 46 ms
10,744 KB |
testcase_16 | AC | 48 ms
10,624 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:58:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 58 | scanf("%s", s[i]); | ~~~~~^~~~~~~~~~~~ main.cpp:63:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 63 | scanf("%d%d%d", &m, &x, &d); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<cstdio> #include<cstring> #include<vector> using namespace std; using ll=long long; vector<char*> s; vector<vector<int> > dp; void swap(int& a, int& b) { int c; c=a; a=b; b=c; } int lcp(int i, int j) { if(i<j) swap(i, j); if(j>=dp[i].size()) dp[i].resize(j+1, -1); else if(dp[i][j]>=0) return dp[i][j]; char *p, *q; int k; p=s[i]; q=s[j]; for(k=0;p[k] && p[k]==q[k];k++) ; return dp[i][j]=k; } int main(void) { vector<char> buf; char *p; int i, j, k, n, m, x, d; ll result; while(scanf("%d", &n)==1) { dp.clear(); dp.resize(n); s.resize(n); buf.resize(8000000+100000); p=&buf[0]; for(i=0;i<n;i++) { s[i]=p; scanf("%s", s[i]); p+=strlen(s[i])+1; } result=0; scanf("%d%d%d", &m, &x, &d); for(k=0;k<m;k++) { i=(x/(n-1))+1; j=(x%(n-1))+1; if(i>j) swap(i, j); else j++; x=(x+d)%(n*(n-1)); result+=lcp(i-1, j-1); // printf("k=%d x=%d i=%d j=%d %lld\n", k, x, i, j, result); } printf("%lld\n", result); /* for(auto x: dp) { for(auto y: x) printf("%2d ", y); printf("\n"); } */ } return 0; }