結果
問題 | No.515 典型LCP |
ユーザー | myanta |
提出日時 | 2017-05-09 09:02:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,487 bytes |
コンパイル時間 | 769 ms |
コンパイル使用メモリ | 52,308 KB |
実行使用メモリ | 19,520 KB |
最終ジャッジ日時 | 2024-09-14 19:56:23 |
合計ジャッジ時間 | 5,814 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
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:82:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 82 | scanf("%s", p); | ~~~~~^~~~~~~~~ main.cpp:96:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 96 | scanf("%d%lld%lld", &m, &x, &d); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<cstdio> #include<cstdlib> #include<cstring> #include<vector> #include<algorithm> using namespace std; using ll=long long; using pcpi=pair<char*,int>; vector<pcpi> s; vector<int> lcp; vector<int> idx; void swap(int& a, int& b) { int c; c=a; a=b; b=c; } int calc_lcp(const char *p, const char *q) { int k; for(k=0;p[k] && p[k]==q[k];k++) ; return k; } bool cmp(const pcpi& a, const pcpi& b) { return (strcmp(a.first, b.first)<0); } void min_u(int& m, int v) { if(m>v) m=v; } int get_lcp(int i, int j) { int idx1=idx[i]; int idx2=idx[j]; if(idx1>idx2) swap(idx1, idx2); int ret=lcp[idx1]; for(int i=idx1+1;i<idx2;i++) { min_u(ret, lcp[i]); if(!ret) break; } return ret; } int main(void) { vector<char> buf; char *p; int i, j, k, m; ll x, result, n, d; while(scanf("%lld", &n)==1) { s.resize(n); lcp.resize(n); idx.resize(n); buf.resize(800000+100000); p=&buf[0]; for(i=0;i<n;i++) { s[i]=make_pair(p, i); scanf("%s", p); p+=strlen(p)+1; } sort(s.begin(), s.end(), cmp); for(i=0;i+1<n;i++) { lcp[i]=calc_lcp(s[i].first, s[i+1].first); } for(i=0;i<n;i++) { idx[s[i].second]=i; } 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+=get_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); } return 0; }