이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "traffic.h"
#include "bits/stdc++.h"
using namespace std;
const int mxN = 1e6 + 7;
int n, p[mxN], dp[mxN], tot;
vector<int> graph[mxN];
void dfs(int u, int par) {
dp[u] = p[u];
for (auto v : graph[u]) {
if (v != par) {
dfs(v, u);
dp[u] += dp[v];
}
}
}
int LocateCentre(int N, int P[], int S[], int D[]) {
n = N;
for (int i = 0; i < n; ++i) {
p[i] = P[i];
tot += p[i];
}
for (int i = 0; i < n - 1; ++i) {
graph[S[i]].push_back(D[i]);
graph[D[i]].push_back(S[i]);
}
dfs(0, -1);
int res = INT_MAX, city = 0;
for (int u = 0; u < n; ++u) {
if (res > max(tot - dp[u], dp[u] - p[u])) {
res = max(tot - dp[u], dp[u] - p[u]);
city = u;
}
}
return city;
}
# | 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... |