# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
549963 | Duy_e | 회문 (APIO14_palindrome) | C++14 | 2 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
** TASK:
** LINK:
*/
#include <bits/stdc++.h>
#define ll long long
#define pii pair<ll, ll>
#define st first
#define nd second
#define file "test"
using namespace std;
const long long INF = 1e18;
const long long N = 2e5 + 5;
const long long base = 311;
const long long MOD = 1e9 + 321;
string s;
ll h[N], ph[N], pw[N], n;
ll get(int l, int r) {
return (h[r] - h[l - 1] * pw[r - l + 1] % MOD + MOD * MOD) % MOD;
}
ll getpre(int l, int r) {
return (ph[l] - ph[r + 1] * pw[r - l + 1] % MOD + MOD * MOD) % MOD;
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#ifndef ONLINE_JUDGE
freopen(file".inp", "r", stdin); freopen(file".out", "w", stdout);
#endif
cin >> s;
s = '#' + s;
n = s.size() - 1;
pw[0] = 1;
for (int i = 1; i <= n; i ++) {
pw[i] = pw[i - 1] * base % MOD;
h[i] = (h[i - 1] * base + s[i]) % MOD;
}
for (int i = n; i >= 1; i --)
ph[i] = (ph[i + 1] * base + s[i]) % MOD;
map <int, ll> dp;
ll ans = 0;
for (int i = 1; i <= n; i ++)
for (int j = i; j <= n; j ++) {
ll x = get(i, j);
if (x == getpre(i, j)) {
// cout << i << ' ' << j << '\n';
dp[x] += j - i + 1;
ans = max(ans, dp[x]);
}
}
cout << ans;
return 0;
}
/** /\_/\
* (= ._.)
* / >🍵 \>🍮
**/
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |