結果
問題 | No.515 典型LCP |
ユーザー | paru |
提出日時 | 2017-05-05 23:40:37 |
言語 | C++11 (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 906 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 56,672 KB |
実行使用メモリ | 9,472 KB |
最終ジャッジ日時 | 2024-09-14 09:20:39 |
合計ジャッジ時間 | 4,630 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 7 ms
8,064 KB |
testcase_04 | AC | 6 ms
8,064 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 26 ms
8,832 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
#include <iostream> 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; long i[100001], j[100001]; for (int k = 0; k < M; k++) { i[k] = (x / (N - 1)) + 1; j[k] = (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; }