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>
#define all(v) v.begin(), v.end()
#define sz(x) (int)x.size()
#define pb push_back
#define pii pair<int, int>
#define chmin(x, v) x = min(x, v)
#define chmax(x, v) x = max(x, v)
#define x first
#define y second
#define int long long
using namespace std;
signed main(){
int nVals; cin >> nVals;
string line; cin >> line;
vector<int> posis[26];
for (int i = 0; i < nVals; ++i)
posis[line[i] - 'a'].pb(i);
int maxi = 0;
int pt = 0;
for (int i = 0; i < nVals;){
pt = i;
while (pt < nVals && line[pt] == line[i])
++pt;
chmax(maxi, pt - i);
i = pt;
}
for (int iMin = 0; iMin < 26; ++iMin)
for (int iMax = 0; iMax < 6; ++iMax){
if (posis[iMin].empty() || posis[iMax].empty()) continue;
vector<pii> vals;
for (int posi : posis[iMin])
vals.pb({posi, -1});
for (int posi : posis[iMax])
vals.pb({posi, 1});
sort(all(vals));
int nCur = sz(vals) + 1;
vector<int> p(nCur), pMin(nCur), pMax(nCur);
int dern1 = 0, dern0 = 0;
int id = 1, pCur = 0;
p[0] = pMin[0] = pMax[0];
for (pii val : vals){
pCur += val.second;
p[id] = pCur;
pMax[id] = max(pMax[id - 1], p[id]);
pMin[id] = min(pMin[id - 1], p[id]);
if (val.second == 1) {
dern1 = id;
if (dern0 != 0){
chmax(maxi, abs(pMax[dern0 - 1] - p[id]));
/// cout << dern0 << " " << pMax[dern0 - 1] << " " << p[id] << endl;
chmax(maxi, abs(pMin[dern0 - 1] - p[id]));
}
}
else {
dern0 = id;
if (dern1 != 0){
chmax(maxi, abs(pMax[dern1 - 1] - p[id]));
chmax(maxi, abs(pMin[dern1 - 1] - p[id]));
}
}
id++;
}
}
cout << maxi << endl;
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... |
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |