Submission #518929

#TimeUsernameProblemLanguageResultExecution timeMemory
518929KeshiWorst Reporter 4 (JOI21_worst_reporter4)C++17
0 / 100
13 ms15692 KiB
//In the name of God #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; const int maxn = 2e5 + 100; const int mod = 1e9 + 7; const int inf = 1e9; #define fast_io ios::sync_with_stdio(false);cin.tie(0);cout.tie(0); #define file_io freopen("input.txt", "r+", stdin);freopen("output.txt", "w+", stdout); #define pb push_back #define Mp make_pair #define F first #define S second #define Sz(x) ll((x).size()) #define all(x) (x).begin(), (x).end() ll pw(ll a, ll b){ ll c = 1; while(b){ if(b & 1) c = c * a % mod; a = a * a % mod; b >>= 1; } return c; } ll n, a[maxn], h[maxn], c[maxn], pp[maxn], ptr; vector<int> g[maxn]; vector<int> vec; set<pll> s[maxn]; void solve(int v){ for(int u : g[v]){ solve(u); if(Sz(s[u]) > Sz(s[v])) s[v].swap(s[u]); for(auto x : s[u]){ s[v].insert(x); } } /* cout << "# " << v << "\n"; for(auto i : s[v]){ cout << " " << i.F << " " << i.S << "\n"; } cout << "! " << h[v] << " " << c[v] << "\n";*/ auto it = s[v].lower_bound(Mp(h[v], -inf)); ll x = c[v]; while(it != s[v].end() && pp[it -> S] <= x){ x -= pp[it->S]; it = s[v].erase(it); } if(it != s[v].end()){ pp[it->S] -= x; } pp[ptr] = c[v]; s[v].insert(Mp(h[v], ptr++)); /*for(auto i : s[v]){ cout << " " << i.F << " " << i.S << "\n"; } cout << "\n";*/ return; } int main(){ fast_io; cin >> n; ll sc = 0; for(int i = 1; i <= n; i++){ cin >> a[i] >> h[i] >> c[i]; vec.pb(h[i]); if(i != 1) g[a[i]].pb(i); sc += c[i]; } sort(all(vec)); vec.resize(unique(all(vec)) - vec.begin()); for(int i = 1; i <= n; i++){ h[i] = Sz(vec) - 1 - (lower_bound(all(vec), h[i]) - vec.begin()); } solve(1); for(auto i : s[1]){ // cout << i.F << " " << i.S << "\n"; sc -= pp[i.S]; } cout << sc << "\n"; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...