結果
問題 | No.515 典型LCP |
ユーザー | nukacha |
提出日時 | 2017-05-06 00:19:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,057 bytes |
コンパイル時間 | 843 ms |
コンパイル使用メモリ | 73,756 KB |
実行使用メモリ | 58,908 KB |
最終ジャッジ日時 | 2024-09-14 09:38:25 |
合計ジャッジ時間 | 4,158 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 <string> #include <vector> #include <utility> int N; std::vector<std::string> s; std::vector<size_t> i, j; int M; size_t x, d; int comp(std::string s1, std::string s2) { int d = 0; int l = std::min(s1.size(), s2.size()); for (int k = 0; k < l; k++) { if (s1[k] != s2[k]) { break; } d++; } //std::cout << d << std::endl; return d; } int main() { size_t r = 0; std::cin >> N; s.resize(N); for (int k = 0; k < N; k++) { std::cin >> s[k]; } std::cin >> M >> x >> d; i.resize(M); j.resize(M); for (int k = 0; k < M; k++) { i[k] = (x / (N - 1)) + 1; j[k] = (x % (N - 1)) + 1; if (i[k] > j[k]) { std::swap(i[k], j[k]); } else { j[k] = j[k] + 1; } x = (x + d) % (N * (N - 1)); } for (int k = 0; k < M; k++) { //std::cout << i[k] << j[k] << std::endl; r += comp(s[i[k]-1], s[j[k]-1]); } std::cout << r << std::endl; }