結果
問題 | No.515 典型LCP |
ユーザー | e869120 |
提出日時 | 2017-05-05 22:43:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 935 bytes |
コンパイル時間 | 979 ms |
コンパイル使用メモリ | 84,476 KB |
実行使用メモリ | 99,392 KB |
最終ジャッジ日時 | 2024-09-14 08:53:36 |
合計ジャッジ時間 | 5,605 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
#include<iostream> #include<algorithm> #include<string> #include<vector> #include<map> using namespace std; #pragma warning(disable:4996) long long N, M, x, d, sum; string S[100009]; vector<long long>E[100009]; map<pair<long long, long long>, int>MM; char c[10000009]; int main() { cin >> N; for (int i = 1; i <= N; i++) { scanf("%s", c); int pos = 0; while (c[pos]) { S[i] += c[pos]; pos++; } } cin >> M >> x >> d; for (int i = 1; i <= M; i++) { long long A = (x / (N - 1)) + 1; long long B = (x % (N - 1)) + 1; if (A > B)swap(A, B); else B = B + 1; x = (x + d) % (N * (N - 1)); if (MM[make_pair(A, B)] >= 1) { sum += MM[make_pair(A, B)] - 1; } else { long long cnt = 0; for (int j = 0; j < 1000000; j++) { if (S[A].size() <= j || S[B].size() <= j)break; if (S[A][j] != S[B][j])break; cnt++; } sum += cnt; MM[make_pair(A, B)] = cnt + 1; } } cout << sum << endl; return 0; }