이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define pb push_back
#define F first
#define S second
using namespace std;
const int N = 1e6 + 10;
const int inf = 1e18;
const int lg = 20;
int a[N],st[N][lg];
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n;
cin >> n;
for(int i = 1; i <= n; i++) cin >> a[i];
map<int,vector<int>>last;
int S = 0;
for(int i = 1; i <= n; i++) {
S += a[i];
last[S].pb(i);
}
// pref[i] - pref[j-1] == 0
//
int sum = 0;
for(int i = 1; i <= n; i++) {
int index = sum;
sum += a[i];
if(last[index].empty()) {
st[i][0] = n + 1;
continue;
}
int l = 0,r = last[index].size() - 1,ans = -1;
while(l <= r) {
int mid = (l + r) / 2;
if(last[index][mid] >= i) {
ans = mid;
r = mid - 1;
}else {
l = mid + 1;
}
}
if(ans == -1) st[i][0] = n + 1;
else st[i][0] = last[index][ans];
}
for(int i = n - 1; i >= 1; i--) st[i][0] = min(st[i][0],st[i+1][0]);
for(int j = 1; j < lg; j++) {
for(int i = 1; i <= n; i++) {
st[i][j] = st[min(st[i][j-1]+1,n)][j-1];
}
}
/* for(int i = 1; i <= n; i++) {
for(int j = 0; j < lg; j++) cout << st[i][j] << ' ';
cout << endl;
}*/
int q;
cin >> q;
while(q--) {
int l,r,res = 0;
cin >> l >> r;
for(int j = lg - 1; j >= 0; j--) {
if(st[l][j] <= r && st[l][j] != 0) {
res += (1 << j);
l = st[l][j] + 1;
//cout << l << ' ' << st[l][0] << endl;
}
}
cout << res << '\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... |