# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
320006 | tushar_2658 | Harbingers (CEOI09_harbingers) | C++14 | 26 ms | 24172 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
const int maxn = 2505;
using ll = long long;
vector<pair<int, ll>> edges[maxn];
ll m[maxn], c[maxn];
ll dp[maxn], d[maxn];
void dfs(int x, int p, vector<int> v, ll dis){
d[x] = dis;
if(x != 1){
for(auto i : v){
dp[x] = min(dp[x], dp[i] + (d[x] - d[i])*m[x] + c[x]);
}
}
for(auto i : edges[x]){
if(i.first != p){
v.push_back(x);
dfs(i.first, x, v, dis + i.second);
}
}
}
int main(int argc, char const *argv[])
{
int n;
scanf("%d", &n);
for(int i = 0; i < n - 1; ++i){
int x, y;
ll C;
scanf("%d %d %lld", &x, &y, &C);
edges[x].push_back({y, C});
edges[y].push_back({x, C});
}
for(int i = 2; i <= n; ++i){
scanf("%lld %lld", &c[i], &m[i]);
}
memset(dp, 63, sizeof dp);
dp[1] = 0;
dfs(1, 1, {}, 0);
for(int i = 2; i <= n; ++i){
printf("%lld ", dp[i]);
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |