結果
問題 | No.515 典型LCP |
ユーザー | fine |
提出日時 | 2017-05-06 01:30:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 663 bytes |
コンパイル時間 | 1,555 ms |
コンパイル使用メモリ | 171,916 KB |
実行使用メモリ | 11,168 KB |
最終ジャッジ日時 | 2024-09-14 10:05:19 |
合計ジャッジ時間 | 9,161 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 140 ms
11,040 KB |
testcase_01 | AC | 174 ms
6,944 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 73 ms
6,940 KB |
testcase_06 | AC | 74 ms
6,940 KB |
testcase_07 | AC | 74 ms
6,940 KB |
testcase_08 | AC | 81 ms
6,940 KB |
testcase_09 | AC | 984 ms
6,940 KB |
testcase_10 | AC | 372 ms
6,940 KB |
testcase_11 | AC | 466 ms
6,940 KB |
testcase_12 | AC | 467 ms
6,944 KB |
testcase_13 | TLE | - |
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++; 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; } } ans += tmp; x = (x + d) % (n * (n - 1)); } cout << ans << endl; return 0; }