이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n, q;
string votes;
unordered_map<int, bool> nulified;
int main() {
cin>>n>>votes>>q;
for(int i = 0; i < q; i++) {
int l, r;
cin>>l>>r;
l--; r--;
int cap = 0, tony = 0, res = 0;
nulified.clear();
for(int i = l; i <= r; i++) {
if(votes[i] == 'C')
cap++;
else
tony++;
if(cap < tony) {
res++;
tony--;
nulified[i] = true;
}
}
cap = 0;
tony = 0;
for(int i = r; i >= l; i--) {
if(votes[i] == 'C')
cap++;
else if(!nulified[i])
tony++;
if(cap < tony) {
res++;
tony--;
}
}
cout<<res<<endl;
}
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... |