이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
const int N=4e5+10, LG=7;
int n, a[N], nxt[N];
pair<ll, int> pf[N];
int jump[LG][N];
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
pf[0]={0, 0};
memset(nxt, -1, sizeof nxt);
for (int i=1; i<=n; ++i) cin >> a[i], pf[i]={pf[i-1].first+a[i], i};
sort(pf, pf+n+1);
for (int i=0; i<=n; ++i){
int j=i;
while (j<n && pf[j+1].first==pf[i].first) ++j;
for (int k=i; k<j; ++k) nxt[pf[k].second+1]=pf[k+1].second;
i=j;
}
int mn=n+1;
jump[0][n+1]=n+1;
for (int i=n; i>=0; --i){
jump[0][i]=mn;
if (nxt[i]!=-1) mn=min(mn, nxt[i]);
}
for (int k=1; k<LG; ++k) for (int i=0; i<=n+1; ++i) jump[k][i]=jump[k-1][jump[k-1][i]];
int q; cin >> q;
while (q--){
int x, y; cin >> x >> y;
int ans=0, cur=x-1;
for (int i=LG-1; i>=0; --i){
while (jump[i][cur]<=y){
cur=jump[i][cur];
ans+=1<<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... |