이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define faster ios_base::sync_with_stdio(false);cin.tie(NULL);
#define OYY 1000000005
#define mod 998244353
#define mid (start+end)/2
int32_t main(){
faster
int n;cin>>n;
int r=0,g=0,sr=0,sg=0;
string s;cin>>s;
for(int i=1;i<n;i++){
if(s[i]=='R')sr++;
if(s[i]=='G')sg++;
if(s[i]=='R' && s[i-1]=='R'){
r++;
}
else if(s[i]=='G' && s[i-1]=='G'){
g++;
}
}
if(n%2==0){
if(sr==sg){
cout<<max(r,g)<<'\n';
}
else cout<<-1<<'\n';
}
else{
if(sr+1==sg || sr==sg+1){
cout<<max(r,g)<<'\n';
}
else cout<<-1<<'\n';
}
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... |