結果
問題 | No.515 典型LCP |
ユーザー | fine |
提出日時 | 2017-05-06 01:33:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 748 bytes |
コンパイル時間 | 1,912 ms |
コンパイル使用メモリ | 177,836 KB |
実行使用メモリ | 102,540 KB |
最終ジャッジ日時 | 2024-09-14 10:08:37 |
合計ジャッジ時間 | 6,530 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> P; int main() { cin.tie(0); ios::sync_with_stdio(false); ll n, m, x, d; cin >> n; vector<string> s(n); for (int i = 0; i < n; i++) cin >> s[i]; cin >> m >> x >> d; map<P, int> memo; long long ans = 0; for (int k = 0; k < m; k++) { int i = x / (n - 1); int j = x % (n - 1); if (i > j) swap(j, i); else j++; P tar(i, j); if (memo.count(tar) == 0) { int lmin = min(s[i].length(), s[j].length()); int tmp = lmin; for (int h = 0; h < lmin; h++) { if (s[i][h] != s[j][h]) { tmp = h; break; } } memo[tar] = tmp; } ans += memo[tar]; x = (x + d) % (n * (n - 1)); } cout << ans << endl; return 0; }