Submission #339011

# Submission time Handle Problem Language Result Execution time Memory
339011 2020-12-24T11:20:32 Z lohacho Harbingers (CEOI09_harbingers) C++14
60 / 100
194 ms 25648 KB
#include <bits/stdc++.h>

using namespace std;

using LL = long long;
int N;
vector<vector<LL>> cht((int)1e5, vector<LL>(3));
vector<vector<vector<LL>>> era((int)1e5);
int top, etop;

inline LL getc(vector<LL> A, vector<LL> B){
	return (B[2] - A[2]) / (A[1] - B[1]) + ((B[2] - A[2]) % (A[1] - B[1]) > 0);
}

void push(LL A, LL B){
	cht[top++] = {-(LL)1e18, A, B};
	if(top >= 2){
		cht[top - 1][0] = getc(cht[top - 2], cht[top - 1]);
	}
	vector<vector<LL>> np;
	if(N < (int)1e5){
		while(top >= 3 && cht[top - 1][0] <= cht[top - 2][0]){
			np.push_back(cht[top - 2]);
			cht[top - 2] = cht[top - 1]; --top;
			cht[top - 1][0] = getc(cht[top - 2], cht[top - 1]);
		}
	}
	era[etop++] = np;
}

LL get(LL x){
	vector<LL> vc = {x + 1, -(LL)1e18, -(LL)1e18};
	int pos = lower_bound(cht.begin(), cht.begin() + top, vc) - cht.begin() - 1;
	return cht[pos][1] * x + cht[pos][2];
}

void del(){
	--top;
	vector<vector<LL>> now = era[--etop];
	for(int i = (int)now.size() - 1; i >= 0; --i){
		cht[top++] = now[i];
	}
}

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	cin >> N;
	vector<vector<pair<int, int>>> way(N);
	for(int i = 0; i < N - 1; ++i){
		int a, b, c; cin >> a >> b >> c; --a; --b;
		way[a].push_back({b, c}), way[b].push_back({a, c});
	}
	vector<pair<int, int>> val(N);
	for(int i = 1; i < N; ++i){
		cin >> val[i].first >> val[i].second;
	}
	vector<LL> sum(N), chk(N), dp(N);
	function<void(int, int)> dfs = [&](int x, int dis){
		chk[x] = 1;
		sum[x] = dis;
		if(x){
			dp[x] = get(val[x].second) + val[x].first + val[x].second * sum[x];
		}
		else dp[x] = 0;
		push(-sum[x], dp[x]);
		for(auto&nxt:way[x]){
			if(!chk[nxt.first]){
				dfs(nxt.first, dis + nxt.second);
			}
		}
		del();
	};
	dfs(0, 0);
	for(int i = 1; i < N; ++i){
		cout << dp[i] << ' ';
	}
	return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 9 ms 8172 KB Output is correct
2 Correct 12 ms 8684 KB Output is correct
3 Correct 71 ms 16876 KB Output is correct
4 Correct 111 ms 20716 KB Output is correct
5 Correct 174 ms 25648 KB Output is correct
6 Incorrect 194 ms 24116 KB Output isn't correct
7 Correct 110 ms 18796 KB Output is correct
8 Incorrect 158 ms 20840 KB Output isn't correct
9 Incorrect 151 ms 22124 KB Output isn't correct
10 Incorrect 135 ms 21480 KB Output isn't correct