| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 846976 | TahirAliyev | Sum Zero (RMI20_sumzero) | C++17 | 392 ms | 22384 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
 
using namespace std;
 
#define ll long long int
#define oo 1e9
#define pii pair<int, int>
 
const int MAX = 4e5 + 5, LOGMAX = 4; 
 
int n, q;
int arr[MAX];
pii presum[MAX];
int R[MAX];
int par[LOGMAX][MAX];
 
ll lift(int t, int f){
    ll ans = 0;
    for(int j = LOGMAX - 1; j >= 0 && par[0][t] != 0; j--){
        while(par[j][t] <= f && par[j][t] != 0){
            t = par[j][t];
            ans += (1 << (j * 3));
        }
    }
    if(par[0][t] <= f + 1 && par[0][t] != 0) ans++;
    return ans;
}
 
int main(){
    scanf("%d", &n);
    for(int i = 1; i <= n; i++){
        scanf("%d", &arr[i]);
        presum[i].first = presum[i - 1].first + arr[i];
        presum[i].second = i;
    }
    sort(presum, presum + n + 1);
    for(int l = 0; l < n; l++){
        if(presum[l].first == presum[l + 1].first){
            R[presum[l].second + 1] = presum[l + 1].second;
        }
    }
    scanf("%d", &q);
    int mn = n + 1;
    for(int i = n; i >= 1; i--){
        if(R[i] < mn && R[i] != 0){
            mn = R[i];
        }
        if(mn == n + 1){
            R[i] = 0;
        }
        else{
            R[i] = mn;
        }
    }
    for(int i = 1; i <= n; i++){
        if(!R[i]){
            par[0][i] = 0;
            continue;
        }
        par[0][i] = R[i] + 1;
    }
    for(int j = 1; j < LOGMAX; j++){
        for(int i = 1; i <= n; i++){
            par[j][i] = par[j - 1][par[j - 1][par[j - 1][par[j - 1][par[j - 1][par[j - 1][par[j - 1][par[j - 1][i]]]]]]]];
        }
    }
    while(q--){
        int l, r; scanf("%d%d", &l, &r);
        cout << lift(l, r) << '\n';
    }
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
