結果
問題 | No.2858 Make a Palindrome |
ユーザー | kwm_t |
提出日時 | 2024-08-26 18:52:04 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 785 ms / 3,000 ms |
コード長 | 3,035 bytes |
コンパイル時間 | 5,257 ms |
コンパイル使用メモリ | 312,248 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-26 18:52:37 |
合計ジャッジ時間 | 30,931 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 737 ms
6,812 KB |
testcase_01 | AC | 384 ms
6,944 KB |
testcase_02 | AC | 386 ms
6,944 KB |
testcase_03 | AC | 415 ms
6,940 KB |
testcase_04 | AC | 402 ms
6,940 KB |
testcase_05 | AC | 383 ms
6,940 KB |
testcase_06 | AC | 347 ms
6,944 KB |
testcase_07 | AC | 335 ms
6,944 KB |
testcase_08 | AC | 326 ms
6,944 KB |
testcase_09 | AC | 323 ms
6,940 KB |
testcase_10 | AC | 619 ms
6,944 KB |
testcase_11 | AC | 588 ms
6,944 KB |
testcase_12 | AC | 623 ms
6,940 KB |
testcase_13 | AC | 605 ms
6,940 KB |
testcase_14 | AC | 606 ms
6,944 KB |
testcase_15 | AC | 649 ms
6,944 KB |
testcase_16 | AC | 686 ms
6,944 KB |
testcase_17 | AC | 661 ms
6,944 KB |
testcase_18 | AC | 678 ms
6,940 KB |
testcase_19 | AC | 678 ms
6,940 KB |
testcase_20 | AC | 641 ms
6,944 KB |
testcase_21 | AC | 656 ms
6,944 KB |
testcase_22 | AC | 331 ms
6,940 KB |
testcase_23 | AC | 642 ms
6,944 KB |
testcase_24 | AC | 588 ms
6,940 KB |
testcase_25 | AC | 490 ms
6,940 KB |
testcase_26 | AC | 487 ms
6,940 KB |
testcase_27 | AC | 735 ms
6,944 KB |
testcase_28 | AC | 561 ms
6,940 KB |
testcase_29 | AC | 673 ms
6,944 KB |
testcase_30 | AC | 762 ms
6,940 KB |
testcase_31 | AC | 728 ms
6,944 KB |
testcase_32 | AC | 719 ms
6,944 KB |
testcase_33 | AC | 746 ms
6,944 KB |
testcase_34 | AC | 729 ms
6,944 KB |
testcase_35 | AC | 716 ms
6,944 KB |
testcase_36 | AC | 750 ms
6,944 KB |
testcase_37 | AC | 760 ms
6,944 KB |
testcase_38 | AC | 749 ms
6,940 KB |
testcase_39 | AC | 785 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> //using namespace std; using namespace atcoder; //using mint = modint1000000007; //const int mod = 1000000007; using mint = modint998244353; const int mod = 998244353; //const int INF = 1e9; const long long LINF = 1e18; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rep2(i,l,r)for(int i=(l);i<(r);++i) #define rrep(i, n) for (int i = (n) - 1; i >= 0; --i) #define rrep2(i,l,r)for(int i=(r) - 1;i>=(l);--i) #define all(x) (x).begin(),(x).end() #define allR(x) (x).rbegin(),(x).rend() #define P pair<int,int> template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; } template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; } // startのindexから右にsize分のHashを計算する // 更新がある場合はSegment Treeを使う mint calcHash(int n, int start, long long size, const std::vector<mint> &hashArray, const int base) { long long h = std::min(size, (long long)n - start); long long b = ((size - h) / n) * n; long long t = size - h - b; mint hash = 0; if (h) { mint sub = (hashArray[start + h] - hashArray[start]) / atcoder::pow_mod(base, start, mod); hash += sub; //cout << sub.val() << endl; } if (b) { mint sub = hashArray[n] * (atcoder::pow_mod(base, b, mod) - 1) / (atcoder::pow_mod(base, n, mod) - 1) * atcoder::pow_mod(base, h, mod); hash += sub; } if (t) { mint sub = atcoder::pow_mod(base, h + b, mod)*hashArray[t]; hash += sub; } return hash; } int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int t; std::cin >> t; const int base = 100; std::vector<mint>pow(200005); pow[0] = 1; rep2(i, 1, pow.size())pow[i] = pow[i - 1] * base; while (t--) { int n, m; std::cin >> n >> m; std::string s; std::cin >> s; auto t = s; reverse(all(t)); long long ans = LINF; std::vector<mint>hs(s.size() + 1), ht(t.size() + 1); rep(i, n) { hs[i + 1] = hs[i] + pow[i] * (s[i] - 'a' + 1); ht[i + 1] = ht[i] + pow[i] * (t[i] - 'a' + 1); } rep(i, n) { int sz = (m) / 2; int iR = (i + 1) % n; mint hR = calcHash(n, iR, sz, hs, base); int iL = (i - 1 + n) % n; iL = n - 1 - iL; mint hL = calcHash(n, iL, sz, ht, base); if (hR != hL)continue; int tmp = 1; int l = sz - i; if (l > 0)tmp += (l + n - 1) / n; int r = sz - (n - 1 - i);//??? if (r > 0)tmp += (r + n - 1) / n; chmin(ans, tmp); } rep(i, n) { int sz = (m + 1) / 2; int iR = (i + 0) % n; mint hR = calcHash(n, iR, sz, hs, base); int iL = (i - 1 + n) % n; iL = n - 1 - iL; mint hL = calcHash(n, iL, sz, ht, base); if (hR != hL)continue; int tmp = 0 != i; int l = sz - i; int r = 0 == i ? sz : sz - (n - i); //cout << l << " " << r << endl; if (l > 0)tmp += (l + n - 1) / n; if (r > 0)tmp += (r + n - 1) / n; //cout << i << endl; chmin(ans, tmp); } if (LINF == ans)ans = -1; std::cout << ans << std::endl; } return 0; }