結果
問題 | No.2234 palindromer |
ユーザー | srjywrdnprkt |
提出日時 | 2023-08-27 01:32:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,981 bytes |
コンパイル時間 | 2,090 ms |
コンパイル使用メモリ | 204,900 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-07 20:47:45 |
合計ジャッジ時間 | 2,875 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; template <typename T> vector<int> z_algorithm(T &S){ vector<int> Z(S.size()); Z[0] = S.size(); int i=1, j=0; while(i < S.size()){ while(i+j < S.size() && S[j] == S[i+j]) j++; Z[i] = j; if (j == 0){ i++; continue; } int k=1; while(k < j && k + Z[k] < j){ Z[i+k] = Z[k]; k++; } i += k; j -= k; } return Z; } //M[2n]...n文字目を中心とする最長回文 //M[2n+1]...n文字目とn+1文字目を中心とする最長回文 template <typename T> vector<int> manacher(T &s){ string S=""; for (auto x : s){ S += x; S += '$'; } S.pop_back(); vector<int> R(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++; R[i] = j; int k=1; while(i-k >= 0 && k + R[i-k] < j){ R[i+k] = R[i-k]; k++; } i += k; j -= k; } for (int i=0; i<S.size(); i++){ if (i % 2 == R[i] % 2) R[i]--; } return R; } int main(){ string S, T; cin >> S; int N=S.size(), mx=0, r; vector<int> R = manacher(S); for (int i=0; i<2*N-1; i++) mx = max(mx, R[i]); for (int i=2*N-2; i>=0; i--){ if (mx == R[i]){ //奇数長 if (i % 2 == 0){ r = (R[i]-1)/2; i /= 2; T = S.substr(0, i-r); reverse(T.begin(), T.end()); cout << S << T << endl; return 0; } //偶数長 else{ r = R[i]/2; i /= 2; T = S.substr(0, i-r+1); reverse(T.begin(), T.end()); cout << S << T << endl; return 0; } } } return 0; }