이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
const int maxn = 500005;
int n;
string s;
void fastIO()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
}
int main()
{
fastIO();
cin >> n >> s;
s = '#' + s;
int q;
cin >> q;
while (q--)
{
int l, r;
cin >> l >> r;
int c = 0;
int t = 0;
int ans1 = 0;
int ans2 = 0;
for (int i = l; i <= r; ++i)
{
if (s[i] == 'C') c++;
else
{
if (t + 1 <= c) t++;
else ans1++;
}
}
c = 0;
t = 0;
for (int i = r; i >= l; --i)
{
if (s[i] == 'C') c++;
else
{
if (t + 1 <= c) t++;
else ans2++;
}
}
cout << max(ans1, ans2) << "\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... |