結果
問題 | No.515 典型LCP |
ユーザー | myanta |
提出日時 | 2017-05-09 00:16:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,269 bytes |
コンパイル時間 | 516 ms |
コンパイル使用メモリ | 49,280 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-09-14 17:43:11 |
合計ジャッジ時間 | 3,240 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 552 ms
6,272 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 88 ms
5,376 KB |
testcase_06 | AC | 90 ms
5,376 KB |
testcase_07 | AC | 90 ms
5,376 KB |
testcase_08 | AC | 92 ms
5,376 KB |
testcase_09 | AC | 277 ms
5,632 KB |
testcase_10 | AC | 94 ms
7,168 KB |
testcase_11 | AC | 94 ms
7,168 KB |
testcase_12 | AC | 95 ms
7,168 KB |
testcase_13 | AC | 109 ms
5,376 KB |
testcase_14 | AC | 9 ms
5,888 KB |
testcase_15 | AC | 89 ms
5,376 KB |
testcase_16 | AC | 89 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:70:34: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘size_t’ {aka ‘long unsigned int’} [-Wformat=] 70 | printf("%d\n", strlen(s[0])); | ~^ ~~~~~~~~~~~~ | | | | int size_t {aka long unsigned int} | %ld main.cpp:65:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 65 | scanf("%s", s[i]); | ~~~~~^~~~~~~~~~~~ main.cpp:75:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 75 | scanf("%d%lld%d", &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(i<0 || j<0) exit(1); if(i>=dp.size()) { printf("Wrong number.\n"); exit(0); } 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, d; ll x, result; while(scanf("%d", &n)==1) { dp.clear(); dp.resize(n+1); 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%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)%((ll)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; }