| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 393866 | fahimcp495 | Traffic (IOI10_traffic) | C++17 | 1411 ms | 175268 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "traffic.h"
#include<bits/stdc++.h>
using namespace std;
void dfs(int u, int p, int val[], vector<vector<int>>& t, vector<int>& sub_val, vector<int>& mx) {
sub_val[u] = val[u];
for (int& v: t[u]) {
if(v != p) {
dfs(v, u, val, t, sub_val, mx);
mx[u] = max(mx[u], sub_val[v]);
sub_val[u] += sub_val[v];
}
}
}
int LocateCentre(int n, int p[], int s[], int d[]) {
vector<vector<int>> t(n);
for (int i = 0; i < n-1; ++i){
t[s[i]].push_back(d[i]);
t[d[i]].push_back(s[i]);
}
vector<int> sub_val(n), mx(n);
dfs(0, -1, p, t, sub_val, mx);
int mn = mx[0];
int tot = accumulate(p, p+n, 0);
for (int u = 1; u < n; ++u){
mx[u] = max(mx[u], tot-(sub_val[u]));
mn = min(mn, mx[u]);
}
for (int u = 0; u < n; ++u){
if(mx[u]==mn) return u;
}
}Compilation message (stderr)
| # | 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... | ||||
