답안 #446102

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
446102 2021-07-20T22:37:36 Z Ronin13 Fountain (eJOI20_fountain) C++11
30 / 100
547 ms 11044 KB
#include<bits/stdc++.h>
#define ll long long
#define f first
#define s second
#define pii pair<int,int>
#define pll pair<ll,ll>
#define ull unsigned ll
#define epb emplace_back
#define pb push_back
#define inf 1e9+1
#define linf 1e18+1
using namespace std;

void solve(){
    int n;cin>>n;
    int q;cin>>q;
    int  c[n+2],d[n+2];
    for(int i=1;i<=n;i++){
        cin>>d[i]>>c[i];
    }
    stack<int>st;
    st.push(n+1);
    d[n+1]=2*inf+1;
    int next[n+2][22];

    next[n+1][0]=n+1;
    int par[n+2];
    for(int i=1;i<=n+1;i++){
        par[i]=0;
    }
    int pref[n+2];
    pref[0]=0;
    pref[n+1]=2*inf;

    for(int i=n;i>=1;i--){
        while(true){
            int ind=st.top();
            if(d[ind]>d[i]){
                next[i][0]=ind;
                par[ind]=i;
                break;
            }
            else st.pop();
        }
        st.push(i);
    }

    for(int i=1;i<=n;i++){

        pref[i]=pref[par[i]]+c[i];
    }
    for(int j=1;j<=21;j++){
        for(int i=1;i<=n+1;i++){
            next[i][j]=next[next[i][j-1]][j-1];
        }
    }


    while(q--){
        int ves;int l;
        cin>>ves>>l;
        l+=pref[par[ves]];
        int cur=ves;
        if(pref[cur]>=l){
            cout<<cur<<"\n";
            continue;
        }
        for(int i=21;i>=0;i--){
            int nex=next[cur][i];
            if(pref[nex]<l)cur=nex;

        }
        cout<<next[cur][0]%(n+1)<<"\n";
    }
}

int main(){
    //ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    solve();
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 475 ms 11044 KB Output is correct
2 Correct 547 ms 10476 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -