이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
cin.sync_with_stdio(false);
cin.tie(0);
int n, q;
string s;
cin>>n;
cin>>s;
cin>>q;
for(int i = 0; i < q; i++){
int l, r;
cin>>l>>r;
int x = 0;
vector<bool> kell(n, false);
for(int j = l-1; j < r; j++){
if(s[j] == 'T' && x > 0){
x--;
kell[j] = true;
} else if(s[j] == 'C')
x++;
}
x = 0;
for(int j = r-1; j >= l-1; j--){
if(s[j] == 'T' && kell[j]){
if(x == 0)
kell[j] = false;
else
x--;
} else if(s[j] == 'C')
x++;
}
int meg = 0;
for(int j = l-1; j < r; j++)
if(s[j] == 'T' && !kell[j])
meg++;
cout<<meg<<"\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... |