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;
#define pb push_back
#define ll long long
#define ff first
#define ss second
#define pii pair<int, int>
#define wr puts("---------------")
#define all(v) v.begin(), v.end()
const int N = 3e5+5;
bool check(deque<char> &dq){
reverse(all(dq));
deque<char> ad = dq;
reverse(all(dq));
return (ad == dq);
}
int weight(string &s){
int ans = 0, n = (int)s.size(), sz = 0;
while(sz != n){
sz++;
deque<char> dq;
for(int i = 0; i < sz; ++i)
dq.pb(s[i]);
ans += (check(dq));
for(int i = sz; i < n; ++i)
dq.pb(s[i]), dq.pop_front(), ans += (check(dq));
}
return ans;
}
int main(){
string s;
cin >> s;
int n = (int)s.size(), answer = 0;
for(int i = 0; i < n; ++i){
string ad = s;
for(char c = 'a'; c <= 'z'; ++c)
ad[i] = c, answer = max(answer, weight(ad)), ad = s;
}
printf("%d", answer);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |