結果
問題 | No.2858 Make a Palindrome |
ユーザー | tottoripaper |
提出日時 | 2024-08-27 23:02:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 475 ms / 3,000 ms |
コード長 | 2,988 bytes |
コンパイル時間 | 2,336 ms |
コンパイル使用メモリ | 205,528 KB |
実行使用メモリ | 13,344 KB |
最終ジャッジ日時 | 2024-08-27 23:02:46 |
合計ジャッジ時間 | 7,293 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 475 ms
6,812 KB |
testcase_01 | AC | 85 ms
6,820 KB |
testcase_02 | AC | 86 ms
6,940 KB |
testcase_03 | AC | 83 ms
6,940 KB |
testcase_04 | AC | 84 ms
6,940 KB |
testcase_05 | AC | 64 ms
6,940 KB |
testcase_06 | AC | 77 ms
6,940 KB |
testcase_07 | AC | 78 ms
6,944 KB |
testcase_08 | AC | 78 ms
6,940 KB |
testcase_09 | AC | 78 ms
6,944 KB |
testcase_10 | AC | 89 ms
6,944 KB |
testcase_11 | AC | 89 ms
6,944 KB |
testcase_12 | AC | 91 ms
6,940 KB |
testcase_13 | AC | 91 ms
6,944 KB |
testcase_14 | AC | 89 ms
6,940 KB |
testcase_15 | AC | 46 ms
6,944 KB |
testcase_16 | AC | 51 ms
6,940 KB |
testcase_17 | AC | 49 ms
6,940 KB |
testcase_18 | AC | 48 ms
6,944 KB |
testcase_19 | AC | 49 ms
6,944 KB |
testcase_20 | AC | 53 ms
11,928 KB |
testcase_21 | AC | 54 ms
12,160 KB |
testcase_22 | AC | 29 ms
7,972 KB |
testcase_23 | AC | 18 ms
11,864 KB |
testcase_24 | AC | 46 ms
10,952 KB |
testcase_25 | AC | 42 ms
9,896 KB |
testcase_26 | AC | 12 ms
10,032 KB |
testcase_27 | AC | 59 ms
13,144 KB |
testcase_28 | AC | 47 ms
10,472 KB |
testcase_29 | AC | 17 ms
12,412 KB |
testcase_30 | AC | 59 ms
13,280 KB |
testcase_31 | AC | 59 ms
13,188 KB |
testcase_32 | AC | 59 ms
13,132 KB |
testcase_33 | AC | 58 ms
13,128 KB |
testcase_34 | AC | 61 ms
13,260 KB |
testcase_35 | AC | 61 ms
13,236 KB |
testcase_36 | AC | 61 ms
13,268 KB |
testcase_37 | AC | 60 ms
13,260 KB |
testcase_38 | AC | 62 ms
13,344 KB |
testcase_39 | AC | 60 ms
13,172 KB |
ソースコード
#include <bits/stdc++.h> using ll = std::int64_t; using T = std::tuple<int, int, int>; template <typename C> std::vector<int> manacher(C seq){ auto n = seq.size(); std::vector<int> res(n, 0); int c = 0; for(int i = 0; i < n; i += 1){ int ri = c - (i - c); if(ri >= 0 && i + res[ri] < c + res[c]){ res[i] = res[ri]; }else{ int j = c + res[c] - i; while(i - j >= 0 && i + j < n && seq[i - j] == seq[i + j]){ j += 1; } res[i] = j; c = i; } } return res; } int main(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int T; std::cin >> T; for(int _=0;_<T;_++){ int N, M; std::cin >> N >> M; std::string S1; std::cin >> S1; S1 = S1 + S1 + S1; std::string S2(S1.size() * 2, '$'); for(int i=0;i<S1.size();i++){ S2[i * 2] = S1[i]; } auto L1 = manacher(S1); auto L2 = manacher(S2); auto check = [&](int x){ { int last = std::min(x, 2) * N; for(int i=0;i<last;i++){ int r1 = std::min(L1[i], last - i); int r2 = std::min(L2[i * 2 + 1] / 2, last - (i + 1)); int c = std::max(r1 * 2 - 1, r2 * 2); if(c >= M){return true;} } } if(x <= 2){return false;} for(int i=N;i<2*N;i++){ if(L1[i] >= std::max(i - (N - 1), 2 * N - i)){ int r = std::min(2 * N - i, i - (N - 1)); ll c = 1ll * (1 + (x - 1) / 2 * 2) * (2 * r - 1) + 1ll * (x / 2 * 2) * (N - (2 * r - 1)); if(c >= M){ return true; } } } for(int i=N;i<2*N;i++){ int r = L2[i * 2 + 1] / 2; if(r >= std::max(i - (N - 1), 2 * N - (i + 1))){ int r2 = std::min(2 * N - (i + 1), i - (N - 1)); ll c = 1ll * (1 + (x - 1) / 2 * 2) * (2 * r2) + 1ll * (x / 2 * 2) * (N - (2 * r2)); if(c >= M){ return true; } } } int r = L2[(2 * N - 1) * 2 + 1] / 2; if(r >= N){ ll c = 1ll * (x / 2) * (2 * N); if(c >= M){ return true; } } return false; }; if(check(2'000'000'000)){ int ok = 2'000'000'000, ng = 0; while(ok - ng >= 2){ int m = ng + (ok - ng) / 2; if(check(m)){ ok = m; }else{ ng = m; } } std::cout << ok << std::endl; }else{ std::cout << -1 << std::endl; } } }