이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define OYY LLONG_MAX
#define mod 998244353
#define faster ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define FOR for(int i=1;i<=n;i++)
#define mid (start+end)/2
#define lim 10005
#define fi first
#define se second
int32_t main(){
faster
int n;cin>>n;
string s;cin>>s;
int q;cin>>q;
while(q--){
vector<int> v(n,0);
int top=0;
int l,r;cin>>l>>r;
l--;r--;
for(int i=l;i<r;i++){
if(s[i]=='C')top++;
else{
top--;
if(top<0)v[i]=1;
}
}
top=0;
for(int i=r;i>=l;i--){
//cout<<top<<endl;
if(s[i]=='C')top++;
else if(v[i]==1)continue;
else{
top--;
if(top<0)v[i]=1;
}
}
top=0;
for(int i=l;i<=r;i++){
top+=v[i];
//cout<<v[i]<<endl;
}
cout<<top<<'\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... |