結果
問題 | No.515 典型LCP |
ユーザー | Takaten |
提出日時 | 2017-05-06 10:51:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,073 bytes |
コンパイル時間 | 1,635 ms |
コンパイル使用メモリ | 174,560 KB |
実行使用メモリ | 16,512 KB |
最終ジャッジ日時 | 2024-09-14 13:48:47 |
合計ジャッジ時間 | 5,988 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 298 ms
10,624 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 312 ms
10,624 KB |
testcase_06 | AC | 354 ms
10,624 KB |
testcase_07 | AC | 299 ms
10,624 KB |
testcase_08 | AC | 359 ms
10,624 KB |
testcase_09 | AC | 275 ms
11,264 KB |
testcase_10 | AC | 103 ms
11,264 KB |
testcase_11 | AC | 99 ms
11,264 KB |
testcase_12 | AC | 98 ms
11,264 KB |
testcase_13 | AC | 353 ms
10,624 KB |
testcase_14 | AC | 25 ms
10,624 KB |
testcase_15 | AC | 298 ms
10,368 KB |
testcase_16 | AC | 368 ms
10,240 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const unsigned long long h = 947239; int main() { int n; cin >> n; vector<string> s(n); vector<vector<unsigned long long>> hh(n); for (int i = 0; i < n; i++) { cin >> s[i]; hh[i].resize(s[i].size() + 1); hh[i][0] = 0; for (int j = 0; j < s[i].size(); j++) { hh[i][j + 1] = hh[i][j] * h + s[i][j]; } } int m, x, d; cin >> m >> x >> d; unsigned long long sum = 0; for (int k = 1; k <= m; k++) { int i, j; i = (x / (n - 1)); j = (x % (n - 1)); if (i > j) { swap(i, j); } else { j++; } x = (x + d) % (n * (n - 1)); int l = 0; int r = min(s[i].size(), s[j].size()) + 1; while (r - l > 1) { int mid = (l + r) / 2; if (hh[i][mid] == hh[j][mid]) { l = mid; } else { r = mid; } } sum += l; } cout << sum << endl; return 0; }