結果
問題 | No.515 典型LCP |
ユーザー | はまやんはまやん |
提出日時 | 2017-05-05 22:59:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,142 bytes |
コンパイル時間 | 1,839 ms |
コンパイル使用メモリ | 174,284 KB |
実行使用メモリ | 61,140 KB |
最終ジャッジ日時 | 2024-09-14 09:56:28 |
合計ジャッジ時間 | 4,786 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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<bits/stdc++.h> using namespace std; #define rep(i,a,b) for(int i=a;i<b;i++) typedef long long ll; int N, M, X, D, I[3010101], J[3010101]; string S[101010]; //----------------------------------------------------------------- void init() { cin.tie(0); ios::sync_with_stdio(false); cin >> N; rep(i, 0, N) cin >> S[i]; cin >> M >> X >> D; ll x = X, d = D; rep(i, 0, M) { I[i] = (x / (N - 1)); J[i] = (x % (N - 1)); if (I[i] > J[i]) swap(I[i], J[i]); else J[i]++; x = (x + d) % (1LL * N * (N - 1)); } } //----------------------------------------------------------------- map<int, int> memo[101010]; int calc(int a, int b) { if (memo[a].count(b)) return memo[a][b]; int cnt = 0; rep(i, 0, min(S[a].length(), S[b].length())) { if (S[a][i] == S[b][i]) cnt = i + 1; else break; } return memo[a][b] = cnt; } //----------------------------------------------------------------- int main() { init(); ll ans = 0; rep(i, 0, M) { int a = I[i], b = J[i]; ans += calc(a, b); } cout << ans << endl; }