이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ends saradanciu
using namespace std;
const int LMAX = 20;
const int NMAX = 5e3+2;
int n,q,c[NMAX],x,y,nxt[LMAX][NMAX];
vector<int> v[NMAX],ends[NMAX];
int main()
{
cin >> n;
map<int, vector<int>> mp;
int pref = 0;
mp[pref].push_back(0);
for(int i = 1; i <= n; i++){
cin >> c[i];
pref += c[i];
for(int it: mp[pref]){
ends[it+1].push_back(i);
}
mp[pref].push_back(i);
}
set<int> s;
s.insert(n+1);
for(int i = n; i >= 1; i--){
for(int it: ends[i]){
s.insert(it);
}
nxt[0][i] = *s.upper_bound(i);
}
for(int j = 1; j < LMAX; j++){
for(int i = n+1; i >= 1; i--){
nxt[j][i] = nxt[j-1][nxt[j-1][i]+1];
}
for(int i = 1; i <= n; i++){
if(nxt[j][i] == 0){
nxt[j][i] = n+1;
}
}
}
cin >> q;
while(q--){
cin >> x >> y;
int ans = 0;
while(x <= y){
if(c[x] == 0){
ans++;
x++;
continue;
}
if(nxt[0][x] > y){
break;
}
x = nxt[0][x];
ans++;
}
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... |