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;
typedef long long ll;
const int MAXN = 4e5 + 2;
int n;
string s;
vector<int> white, black;
bool cross(int x1, int y1, int x2, int y2){
if(x1 > y1) swap(x1, y1);
if(x2 > y2) swap(x2, y2);
if(x1 < x2 && y2 < y1) return false;
if(x2 < x1 && y1 < y2) return false;
if(x1 > y2 || x2 > y1) return false;
return true;
}
int calc(int delta){
int ret = 0;
for(int i = 0; i < n; ++i){
for(int j = i + 1; j < n; ++j){
if(cross(white[i], black[(i + delta + 2*n) % n], white[j], black[(j + delta + 2*n) % n])) ++ret;
}
}
return ret;
}
int main(){
cin >> n >> s;
for(int i = 0; i < 2*n; ++i){
if(s[i] == 'W') white.push_back(i);
else black.push_back(i);
}
int ans = 0;
for(int i = -2; i <= 2; ++i){
ans = max(ans, calc(n/2 + i));
}
cout << ans;
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... |