이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define dbgv(v) cout<<#v<<" = "; f(i,0,v.size()) cout<<v[i]<<" "; cout<<endl
#define dbga(a,x,y) cout<<#a<<" = "; f(i,x,y) cout<<a[i]<<" "; cout<<endl
#define erorp(x) cout<<#x<<"={"<<(x.F)<<" , "<<x.S<<"}"<<endl
#define eror(x) cout<<#x<<'='<<(x)<<endl
#define f_(i,a,b) for(int i=a;i>=b;i--)
#define f(i,a,b) for(int i=a;i<b;i++)
#define nb(x) __builtin_popcount(x)
#define all(v) v.begin(),v.end()
#define bit(n,k) (((n)>>(k))&1)
#define Add(x,y) x=(x+y)%mod
#define maxm(a,b) a=max(a,b)
#define minm(a,b) a=min(a,b)
#define lst(x) x[x.size()-1]
#define sz(x) int(x.size())
#define mp make_pair
#define ll long long
#define pb push_back
#define S second
#define F first
const int N=1e6+99;
int n,t,ans,a[N];
string s;
vector<int> vec0,vec1;
bool check(int lx,int rx,int ly,int ry){
if(lx>rx) swap(lx,rx);
if(ly>ry) swap(ly,ry);
if(lx>ly) swap(lx,ly),swap(rx,ry);
return ly<rx && rx<ry;
}
int calc(int shift){
int res=0;
f(i,0,n){
f(j,i+1,n){
res+=check(vec0[i],vec1[(i+shift)%n],vec0[j],vec1[(j+shift)%n]);
//cout<<i<<" "<<j<<" -> "<<check(vec0[i],vec1[(i+shift)%n],vec0[j],vec1[(j+shift)%n])<<endl;
}
}
return res;
}
int32_t main(){
ios:: sync_with_stdio(0), cin.tie(0), cout.tie(0);
cin>>n>>s;
f(i,0,2*n) if(s[i]==s[0]) vec0.pb(i); else vec1.pb(i);
int l=-1,r=n-1;
while(l+1<r){
int mid=(l+r)>>1;
if(calc(mid)<calc(mid+1)){
l=mid;
}
else{
r=mid;
}
}
cout<<calc(r);
}
# | 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... |