結果
問題 | No.515 典型LCP |
ユーザー | paru |
提出日時 | 2017-05-05 23:45:38 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 928 bytes |
コンパイル時間 | 901 ms |
コンパイル使用メモリ | 62,384 KB |
実行使用メモリ | 66,284 KB |
最終ジャッジ日時 | 2024-09-14 09:23:02 |
合計ジャッジ時間 | 4,558 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | TLE | - |
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 <vector> using namespace std; long LCP (string l, string k) { long res = 0; for (int i = 0; i < min(l.size(), k.size()); i++) { if (l[i] != k[i]) { break; } else { res += 1; } } return res; } int main () { int N; cin >> N; string s[100001]; for (int i = 0; i < N; i++) { cin >> s[i]; } int M; long x, d; cin >> M >> x >> d; vector<long> i, j; for (int k = 0; k < M; k++) { i.push_back((x / (N - 1)) + 1); j.push_back((x % (N - 1)) + 1); if (i[k] > j[k]) { swap(i[k], j[k]); } else { j[k] = j[k] + 1; } i[k] -= 1; j[k] -= 1; x = (x + d) % (N * (N - 1)); } long res = 0; for (int k = 0; k < M; k++) { res += LCP(s[i[k]], s[j[k]]); } cout << res << endl; }