이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define mp make_pair
#define pb push_back
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
typedef vector<ll> vl;
const int maxn = 500005;
int n;
string s;
int main()
{
cin >> n >> s;
s = '#' + s;
int q;
cin >> q;
while (q--)
{
int l, r;
cin >> l >> r;
vector<bool> gone(n + 5, false);
int c = 0;
int t = 0;
for (int i = l; i <= r; ++i)
{
if (s[i] == 'C')
{
c++;
}
else
{
if (t + 1 <= c)
{
++t;
}
else
{
gone[i] = true;
}
}
}
c = 0;
t = 0;
for (int i = r; i >= l; --i)
{
if (s[i] == 'C')
{
++c;
}
else if (gone[i] == false)
{
if (t + 1 <= c)
{
++t;
}
else
{
gone[i] = true;
}
}
}
int ans = 0;
for (int i = l; i <= r; ++i)
{
ans += gone[i];
}
cout << ans << '\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... |