Submission #722240

#TimeUsernameProblemLanguageResultExecution timeMemory
722240600MihneaWorst Reporter 4 (JOI21_worst_reporter4)C++17
14 / 100
2047 ms27700 KiB
#include <cmath>
#include <functional>
#include <fstream>
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <set>
#include <map>
#include <list>
#include <time.h>
#include <math.h>
#include <random>
#include <deque>
#include <cassert>
#include <queue>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <bitset>
#include <sstream>
#include <stack>
#include <chrono>
#include <cstring>
#include <numeric>
using namespace std;
typedef long long ll;
const int N = 200000 + 7;
const ll INF = (ll)1e18 + 7;
int n;
int par[N];
int h[N];
int c[N];
vector<int> g[N];
int dep[N];
ll dp[N];
ll dp2[N];
ll get(int a) {
	ll sol = c[a];
	for (auto& b : g[a]) {
		sol += min(dp[b], dp2[b]);
	}
	return sol;
}
void compute(int a) {
	ll init = min(dp[a], dp2[a]);
	dp[a] = 0;
	for (auto& b : g[a]) {
		dp[a] += min(dp[b], dp2[b]);
	}
	dp2[a] = dp[a];
	while (par[a]) {
		ll estim = dp2[par[a]] - init + min(dp[a], dp2[a]);
		init = min(dp[par[a]], dp2[par[a]]);
		dp2[par[a]] = get(par[a]);
		//cout << "dif : " << dp2[par[a]] - estim << "\n";
		a = par[a];
	}
}
void build1(int a) {
	//dp2[a] = c[a];
	for (auto& b : g[a]) {
		dep[b] = 1 + dep[a];
		build1(b);
		//dp2[a] += dp2[b];
	}
	dp2[a] = get(a);
}
signed main() {
#ifdef ONPC	
	FILE* stream;
	freopen_s(&stream, "input.txt", "r", stdin);
#else
	ios::sync_with_stdio(false);
	cin.tie(0); cout.tie(0);
#endif
	cin >> n;
	for (int i = 1; i <= n; i++) {
		cin >> par[i] >> h[i] >> c[i];
		dp[i] = INF;
	}
	assert(par[1] == 1);
	par[1] = 0;
	for (int i = 2; i <= n; i++) {
		assert(1 <= par[i] && par[i] <= i - 1);
		g[par[i]].push_back(i);
	}
	build1(1);
	vector<int> ord(n);
	iota(ord.begin(), ord.end(), 1);
	sort(ord.begin(), ord.end(), [&](int a, int b) {
		if (h[a] != h[b]) {
			return h[a] > h[b];
		}
		return dep[a] > dep[b];
		});
	for (auto& a : ord) {
		compute(a);
	}
	cout << min(dp[1], dp2[1]) << "\n";
	return 0;
}

Compilation message (stderr)

worst_reporter2.cpp: In function 'void compute(int)':
worst_reporter2.cpp:53:6: warning: unused variable 'estim' [-Wunused-variable]
   53 |   ll estim = dp2[par[a]] - init + min(dp[a], dp2[a]);
      |      ^~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...