# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
973507 | duckindog | Harbingers (CEOI09_harbingers) | C++17 | 1062 ms | 11956 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 100'000 + 10;
int n;
vector<pair<int, int>> ad[N];
int s[N], velocity[N];
int par[N], d[N];
long long dp[N];
void dfs(int u, int p = -1) {
auto& ret = dp[u];
{
int x = u;
while (x) {
ret = min(ret, dp[x] + (d[u] - d[x]) * velocity[u] + s[u]);
x = par[x];
}
}
for (const auto& [v, w] : ad[u]) {
if (v == p) continue;
d[v] = d[u] + w;
par[v] = u;
dfs(v, u);
}
}
int32_t main() {
cin.tie(0)->sync_with_stdio(0);
cin >> n;
for (int i = 2; i <= n; ++i) {
int u, v, w; cin >> u >> v >> w;
ad[u].push_back({v, w});
ad[v].push_back({u, w});
}
for (int i = 2; i <= n; ++i) cin >> s[i] >> velocity[i];
memset(dp, 40, sizeof dp);
dp[1] = 0;
dfs(1);
for (int i = 2; i <= n; ++i) cout << dp[i] << " \n"[i == n];
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |