結果
問題 | No.515 典型LCP |
ユーザー | vvataarne |
提出日時 | 2017-05-05 23:36:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,615 bytes |
コンパイル時間 | 1,533 ms |
コンパイル使用メモリ | 168,024 KB |
実行使用メモリ | 58,752 KB |
最終ジャッジ日時 | 2024-09-14 09:16:39 |
合計ジャッジ時間 | 4,779 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 205 ms
58,752 KB |
testcase_01 | AC | 229 ms
53,632 KB |
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 | -- | - |
ソースコード
// clang-format off #include <bits/stdc++.h> #define int long long int #define main signed main() #define bye return 0 #define loop(i, a, n) for (int i = (a); i < (n); i++) #define rep(i, n) loop(i, 0, n) #define each(p, v) for (auto p = (v).begin(); p != (v).end(); p++) #define all(v) (v).begin(), (v).end() #define prec(n) fixed << setprecision(n) #define dump(x) cerr << "(L" << __LINE__ << ") " << #x << " = " << (x) << endl #define clr(x, a) memset(x, a, sizeof(x)) #define sum(v) accumulate(all(v), 0) #define stlice(from, to) substr(from, (to) - (from) + 1) #define odd(n) ((n) % 2) #define even(n) (!odd(n)) #define INF 1000000000 #define MOD 1000000007 #define pb push_back #define mp make_pair #define mt make_tuple #define fi first #define se second #define vi vector<int> #define vb vector<bool> #define vc vector<char> using namespace std; // clang-format on /* for k in 1 .. M 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 end x = (x + d) % (n * (n - 1)) end */ main { int n; cin >> n; string s[n]; rep(i, n) cin >> s[i]; int m, x, d; cin >> m >> x >> d; int i[m], j[m]; rep(k, m) { 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; } x = (x + d) % (n * (n - 1)); } int c = 0; rep(k, m) { string a = s[i[k] - 1], b = s[j[k] - 1]; rep(l, min(a.size(), b.size())) { if (a[l] == b[l]) { c++; } else { break; } } } cout << c << endl; bye; }