# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
97287 | dalgerok | Palindromic Partitions (CEOI17_palindromic) | C++14 | 176 ms | 28940 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
const int N = 1e6 + 5, MOD1 = 1e9 + 1337, MOD2 = 999888777;
string s;
int n, p1[N], p2[N], h1[N], h2[N];
inline pair < int, int > get_hash(int l, int r){
int cur1 = 1LL * (h1[r] - h1[l - 1] + MOD1) % MOD1 * p1[N - r] % MOD1,
cur2 = 1LL * (h2[r] - h2[l - 1] + MOD2) % MOD2 * p2[N - r] % MOD2;
return make_pair(cur1, cur2);
}
inline void solve(){
cin >> s;
n = (int)s.size();
s = '#' + s;
for(int i = 1; i <= n; i++){
h1[i] = (h1[i - 1] + 1LL * (s[i] - 'a' + 1) * p1[i] % MOD1) % MOD1;
h2[i] = (h2[i - 1] + 1LL * (s[i] - 'a' + 1) * p2[i] % MOD2) % MOD2;
}
int l = 1, r = n, ans = 0;
while(l <= r){
for(int len = 1; l + len - 1 < r - len + 1; len++){
if(get_hash(l, l + len - 1) == get_hash(r - len + 1, r)){
ans += 2;
# | 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... |