結果
問題 | No.515 典型LCP |
ユーザー | square1001 |
提出日時 | 2017-05-05 23:00:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,044 bytes |
コンパイル時間 | 761 ms |
コンパイル使用メモリ | 72,704 KB |
実行使用メモリ | 18,176 KB |
最終ジャッジ日時 | 2024-09-14 09:00:27 |
合計ジャッジ時間 | 4,363 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 5 ms
8,320 KB |
testcase_04 | AC | 6 ms
8,320 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <vector> #include <iostream> #include <algorithm> #pragma warning(disable : 4996) using namespace std; const int mod1 = 1000000439; const int mod2 = 1000000637; const int bs = 100000969; int N, M, a, b, c[100009]; long long x, d; char s[800009]; vector<int> h1[100009], h2[100009]; int main() { scanf("%d", &N); for (int i = 0; i < N; i++) { scanf("%s", s); while (s[c[i]]) c[i]++; h1[i].resize(c[i] + 1); h2[i].resize(c[i] + 1); for (int j = 0; j < c[i]; j++) { h1[i][j + 1] = (1LL * h1[i][j] * bs + s[j]) % mod1; h2[i][j + 1] = (1LL * h2[i][j] * bs + s[j]) % mod2; } } scanf("%d %lld %lld", &M, &x, &d); long long t = 1LL * N * (N + 1), ret = 0; for (int i = 1; i <= M; i++) { int a = x / (N - 1), b = x % (N - 1); if (a > b) swap(a, b); else b++; int l = 0, r = min(c[a], c[b]) + 1; while (r - l > 1) { int m = (l + r) >> 1; if (h1[a][m] == h1[b][m] && h2[a][m] == h2[b][m]) l = m; else r = m; } ret += l; x = (x + d >= t ? x + d - t : x + d); } printf("%lld\n", ret); return 0; }