結果
問題 | No.515 典型LCP |
ユーザー | myanta |
提出日時 | 2017-05-09 08:37:06 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,184 bytes |
コンパイル時間 | 1,064 ms |
コンパイル使用メモリ | 49,152 KB |
実行使用メモリ | 814,060 KB |
最終ジャッジ日時 | 2024-09-14 19:33:19 |
合計ジャッジ時間 | 4,092 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
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 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:64:34: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘size_t’ {aka ‘long unsigned int’} [-Wformat=] 64 | printf("%d\n", strlen(s[0])); | ~^ ~~~~~~~~~~~~ | | | | int size_t {aka long unsigned int} | %ld main.cpp:59:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 59 | scanf("%s", s[i]); | ~~~~~^~~~~~~~~~~~ main.cpp:69:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 69 | scanf("%d%lld%lld", &m, &x, &d); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<cstdio> #include<cstdlib> #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, m; ll x, result, n, d; while(scanf("%lld", &n)==1) { dp.clear(); dp.resize(n); s.resize(n); buf.resize(800000+100000); p=&buf[0]; for(i=0;i<n;i++) { s[i]=p; scanf("%s", s[i]); p+=strlen(s[i])+1; } if(n<=1) { printf("%d\n", strlen(s[0])); continue; } result=0; scanf("%d%lld%lld", &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; }