# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
889623 | asdfgrace | 경주 (Race) (IOI11_race) | C++17 | 13 ms | 51344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "race.h"
using namespace std;
/*
start at the centroid
consider all paths whose lca is the centroid of the tree
try solving each of these in o(n)?
can we knapsack?
consider root & sum of weights on paths to each node
do a dfs
then for each node
search for a matching path
*/
multiset<int> at[1000010];
int best_path(int N, int K, int H[][2], int L[]) {
int ans = 1e9;
vector<vector<pair<int, int>>> edges(N);
for (int i = 0; i < N - 1; i++) {
edges[H[i][0]].push_back({H[i][1], L[i]});
edges[H[i][1]].push_back({H[i][0], L[i]});
}
at[0].insert(0);
vector<int> sz(N, 1), val(N, 0), dep(N, 0);
vector<bool> visited(N, false);
function<void(int, int)> dfs_sz = [&] (int node, int par) {
sz[node] = 1;
for (auto [next, wt] : edges[node]) {
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |