This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 4e5 + 25;
typedef long long ll;
int p[MAXN], par[MAXN];
int n; pair <ll, int> d2[MAXN];
const int SZE = 630;
int main () {
ios::sync_with_stdio(0); cin.tie(0);
cin >> n;
for (int i = 0; i <= n + 1; i++) p[i] = n + 1;
ll cur = 0; d2[0] = {0, 0};
for (int i = 1; i <= n; i++) {
ll x; cin >> x; cur += x; d2[i] = {cur, i};
}
sort(d2, d2 + n + 1);
for (int i = 0; i < n; i++) {
if (d2[i].first == d2[i + 1].first) {
p[d2[i].second] = d2[i + 1].second;
}
}
for (int i = n; i >= 0; i--) {
p[i] = min(p[i], p[i + 1]);
par[i] = i;
for (int j = 0; j < SZE; j++) {
par[i] = p[par[i]];
}
}
int q; cin >> q;
while (q--) {
int l, r; cin >> l >> r;
l--;
int ans = 0;
while (par[l] <= r) {
l = par[l]; ans += SZE;
}
while (p[l] <= r) {
l = p[l]; ans++;
}
cout << ans << '\n';
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |