結果
問題 | No.2858 Make a Palindrome |
ユーザー | GOTKAKO |
提出日時 | 2024-08-25 16:58:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,458 bytes |
コンパイル時間 | 2,522 ms |
コンパイル使用メモリ | 206,732 KB |
実行使用メモリ | 12,892 KB |
最終ジャッジ日時 | 2024-08-25 16:58:16 |
合計ジャッジ時間 | 6,607 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 62 ms
6,944 KB |
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 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 44 ms
11,720 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 34 ms
8,896 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 44 ms
12,068 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; vector<int> Mana(string &s){ //Manacher int n = s.size(); vector<int> ret(n); for(int i=0,w=0; i<n;){ while(i+w < n && i-w >= 0 && s.at(i-w) == s.at(i+w)) w++; ret.at(i) = w; int k = 1; while(i-k >= 0 && k+ret.at(i-k) < w) ret.at(i+k) = ret.at(i-k),k++; i += k; w -= k; } return ret; } vector<int> Mana2(string s){ //偶数長検出用. string t = ""; for(auto &c : s) t += c,t += '$'; t.pop_back(); vector<int> ret = Mana(t); //M[i%2 == 0]=偶数は-1,M[i%2 == 1]=奇数は-1. for(int i=0; i<ret.size(); i++) if(i%2 == ret.at(i)%2) ret.at(i)--; return ret; } int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int T; cin >> T; while(T--){ int N,M; cin >> N >> M; string t; cin >> t; string s; int answer = -1; for(int i=0; i<3; i++){ s += t; auto Ma = Mana2(s); for(auto &m : Ma) if(m >= M) answer = i+1; if(answer != -1) break; } if(answer != -1){cout << answer << endl; continue;} auto Ma = Mana2(s); answer = 1001001001; for(int i=2*N-1; i<4*N-2; i++) if(Ma.at(i) >= N){ int first = Ma.at(i)%N; answer = min(answer,(M-first+N-1)/N); } if(answer == 1001001001) answer = -1; cout << answer << "\n"; } }