제출 #582940

#제출 시각아이디문제언어결과실행 시간메모리
582940600MihneaPalindromic Partitions (CEOI17_palindromic)C++17
35 / 100
10068 ms340 KiB
#include <bits/stdc++.h> using namespace std; typedef long double ld; typedef long long ll; const int N = (int) 1e6 + 7; int n; int a[N]; int mx[N]; signed main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); ///freopen ("input.txt", "r", stdin); int Tests; cin >> Tests; for (int tc = 1; tc <= Tests; tc++) { { string str; cin >> str; n = (int) str.size(); if (n == 1) { cout << "1\n"; continue; } for (int i = 0; i < n; i++) { char ch = str[i]; assert('a' <= ch && ch <= 'z'); a[i] = ch - 'a'; assert(0 <= a[i] && a[i] < 26); } for (int i = 0; i <= n + 1; i++) { mx[i] = 0; } for (int i = 0; i <= (n - 1) / 2; i++) { mx[i] = 1; } for (int i = (n - 2) / 2; i >= 0; i--) { for (int j = i; j <= n - 1 - j; j++) { bool ok = 1; for (int k = 0; k <= j - i; k++) { ok &= (a[i + k] == a[n - 1 - j + k]); } if (ok) { mx[i] = max(mx[i], 2 + mx[j + 1]); } } } cout << mx[0] << "\n"; } } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...