結果
問題 | No.2858 Make a Palindrome |
ユーザー | shobonvip |
提出日時 | 2024-08-25 15:24:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,352 bytes |
コンパイル時間 | 4,184 ms |
コンパイル使用メモリ | 265,148 KB |
実行使用メモリ | 11,172 KB |
最終ジャッジ日時 | 2024-08-25 15:24:32 |
合計ジャッジ時間 | 8,743 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 535 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 36 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | AC | 44 ms
10,160 KB |
testcase_21 | AC | 47 ms
10,336 KB |
testcase_22 | AC | 24 ms
7,032 KB |
testcase_23 | AC | 29 ms
10,212 KB |
testcase_24 | AC | 40 ms
9,544 KB |
testcase_25 | AC | 35 ms
8,812 KB |
testcase_26 | AC | 23 ms
8,628 KB |
testcase_27 | AC | 49 ms
10,984 KB |
testcase_28 | AC | 40 ms
9,132 KB |
testcase_29 | AC | 31 ms
10,564 KB |
testcase_30 | AC | 48 ms
11,168 KB |
testcase_31 | AC | 48 ms
11,168 KB |
testcase_32 | AC | 50 ms
11,156 KB |
testcase_33 | AC | 53 ms
11,156 KB |
testcase_34 | AC | 47 ms
11,016 KB |
testcase_35 | AC | 50 ms
11,040 KB |
testcase_36 | AC | 50 ms
11,036 KB |
testcase_37 | AC | 49 ms
11,172 KB |
testcase_38 | AC | 49 ms
11,024 KB |
testcase_39 | AC | 49 ms
11,152 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; //* ATCODER #include<atcoder/all> using namespace atcoder; typedef modint998244353 mint; //*/ /* BOOST MULTIPRECISION #include<boost/multiprecision/cpp_int.hpp> using namespace boost::multiprecision; //*/ typedef long long ll; #define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++) #define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--) template <typename T> bool chmin(T &a, const T &b) { if (a <= b) return false; a = b; return true; } template <typename T> bool chmax(T &a, const T &b) { if (a >= b) return false; a = b; return true; } template <typename T> T max(vector<T> &a){ assert(!a.empty()); T ret = a[0]; for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]); return ret; } template <typename T> T min(vector<T> &a){ assert(!a.empty()); T ret = a[0]; for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]); return ret; } template <typename T> T sum(vector<T> &a){ T ret = 0; for (int i=0; i<(int)a.size(); i++) ret += a[i]; return ret; } vector< int > manacher(const string &s) { vector< int > radius(s.size()); int i = 0, j = 0; while(i < s.size()) { while(i - j >= 0 && i + j < s.size() && s[i - j] == s[i + j]) { ++j; } radius[i] = j; int k = 1; while(i - k >= 0 && i + k < s.size() && k + radius[i - k] < j) { radius[i + k] = radius[i - k]; ++k; } i += k; j -= k; } return radius; } int max_length_palindrome(string s) { vector<int> targ = manacher(s); int odd = max(targ) * 2 - 1; string t = ""; rep(i,0,(int)s.size()){ t += s[i]; t += '$'; } t.pop_back(); int even = 0; vector<int> tmp = manacher(t); for (int i=1; i<(int)tmp.size(); i+=2){ even = max(even, tmp[i]/2*2); } return max(odd, even); } void solve(){ int n; cin >> n; ll m; cin >> m; string s; cin >> s; if (max_length_palindrome(s) >= m){ cout << 1 << endl; return; } string t1 = s; string t2 = s; t2 += s; if (max_length_palindrome(t1) >= m){ cout << 2 << endl; return; } if (max_length_palindrome(t1) == max_length_palindrome(t2)){ cout << -1 << endl; return; } ll a = - max_length_palindrome(t1) + max_length_palindrome(t2); ll b = max_length_palindrome(t1) - a; ll f = (m - b + a - 1) / a; cout << f << endl; } int main(){ int t; cin >> t; while(t--) solve(); }