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 ll long long
#define fi first
#define se second
#define endl "\n"
#define pii pair<ll,ll>
#define pb push_back
#define vi vector<ll>
#define pque priority_queue
#define pqueg priority_queue<ll,vector<ll>,greater<ll>>
#define que queue<ll>
#define FOR(m,i,n) for(int i=(m); i<=(n); i++)
#define FORM(m,i,n) for(int i=(m); i>=(n); i--)
#define all(v) sort(v.begin(),v.end())
ll n,ans,r,g;
string s,s1;
char now;
vector<ll> rr,gg;
int main() {
// cout << pow(2,15) << endl;
// char c = 'R' ^ 'L' ^ 'R';
// cout << c << endl;
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> s;
s = '!' + s;
FOR(1,i,n) {
if(s[i] == 'R') r++;
else g++;
}
if(abs(r-g) > 1) {
cout << -1 << endl;
return 0;
}
if(r > g) now = 'R';
else if(g > r) now = 'G';
else now = s[1];
s1 += '!';
FOR(1,i,n) {
s1 += now;
now = now ^ 'R' ^ 'G';
}
FOR(1,i,n) {
if(s[i] != s1[i]) {
if(s[i] == 'R') rr.pb(i);
else gg.pb(i);
}
}
all(gg); all(rr);
if((ll)gg.size() != (ll)rr.size()) {
cout << -1 << endl;
}
FOR(0,i,(ll)gg.size()-1) {
ans += abs(gg[i] - rr[i]);
}
cout << ans << endl;
}
/*
5
GGGRR
7
GGRRGRR
7
GRGGRRR
*/
# | 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... |