제출 #1043693

#제출 시각아이디문제언어결과실행 시간메모리
1043693guagua0407Jobs (BOI24_jobs)C++17
29 / 100
184 ms33992 KiB
//#pragma GCC optimize("O3")
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int,int>
#define f first
#define s second
#define all(x) x.begin(),x.end()
#define _ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);

int dx[4]={0,0,1,-1};
int dy[4]={1,-1,0,0};

void setIO(string s) {
    freopen((s + ".in").c_str(), "r", stdin);
    freopen((s + ".out").c_str(), "w", stdout);
}

const int mxn=3e5+5;
vector<int> adj[mxn];
vector<ll> x(mxn);
vector<ll> mn(mxn);
vector<ll> pre(mxn);
vector<int> cand(mxn);
vector<int> pos(mxn);

int main() {_
    int n;
    ll S;
    cin>>n>>S;
    vector<int> p(mxn);
    for(int i=1;i<=n;i++){
        cin>>x[i]>>p[i];
        adj[p[i]].push_back(i);
    }
    set<pair<int,int>> A,B;
    function<void(int)> doo=[&](int root){
        pre[pos[root]]=pre[p[pos[root]]]+x[pos[root]];
        mn[pos[root]]=min(mn[p[pos[root]]],pre[pos[root]]);
        while(S+mn[pos[root]]>=0){
            if(cand[root]==-1 or pre[pos[root]]>pre[cand[root]]){
                cand[root]=pos[root];
            }
            if(adj[pos[root]].empty()){
                pos[root]=-1;
                break;
            }
            pos[root]=adj[pos[root]][0];
            pre[pos[root]]=pre[p[pos[root]]]+x[pos[root]];
            mn[pos[root]]=min(mn[p[pos[root]]],pre[pos[root]]);
        }
        if(cand[root]!=-1) A.insert({pre[cand[root]],root});
        if(pos[root]!=-1) B.insert({mn[pos[root]],root});
    };
    for(auto root:adj[0]){
        cand[root]=-1;
        pos[root]=root;
        doo(root);
    }
    ll prv=S;
    while(true){
        if(A.empty() or (*A.rbegin()).f<0) break;
        S+=(*A.rbegin()).f;
        int root=(*A.rbegin()).s;
        A.erase(prev(A.end()));
        if(pos[root]!=-1){
            B.erase({mn[pos[root]],root});
            pre[cand[root]]=mn[cand[root]]=0;
            pos[root]=adj[cand[root]][0];
            cand[root]=pos[root];
            doo(root);
        }
        while(!B.empty() and S+(*B.rbegin()).f>=0){
            int root=(*B.rbegin()).s;
            B.erase(prev(B.end()));
            if(cand[root]!=-1) A.erase({pre[cand[root]],root});
            doo(root);
        }
    }
    cout<<S-prv<<'\n';
    return 0;
}
//maybe its multiset not set
//yeeorz
//laborz

컴파일 시 표준 에러 (stderr) 메시지

Main.cpp: In function 'void setIO(std::string)':
Main.cpp:15:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   15 |     freopen((s + ".in").c_str(), "r", stdin);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:16:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   16 |     freopen((s + ".out").c_str(), "w", stdout);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...