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 <bits/stdc++.h>
using namespace std;
const int MAX = 1 << 20;
bool cmp(const pair<int, int> &a, const pair<int, int> &b) {
return (long long)a.first * b.second < (long long)a.second * b.first;
}
int p[MAX];
int dpup[MAX], dpdown[MAX];
vector<int> L[MAX], R[MAX];
int lft[MAX], rgt[MAX];
vector<int> V[MAX];
pair<int, int> res = {1e9, 1};
void dfsdown(int node, int par) {
L[node].push_back(0);
for (auto it : V[node]) {
if (it != par) {
dfsdown(it, node);
lft[it] = (int)L[node].size() - 1;
L[node].push_back(max(L[node].back(), p[it] == 1 ? dpdown[it] + 1 : 0));
}
}
R[node].push_back(0);
for (int i = (int)V[node].size() - 1; i >= 0; i--) {
int it = V[node][i];
if (it != par) {
rgt[it] = (int)R[node].size() - 1;
R[node].push_back(max(R[node].back(), p[it] == 1 ? dpdown[it] + 1 : 0));
}
}
dpdown[node] = L[node].back();
}
void dfsup(int node, int par) {
if (node) {
dpup[node] = (p[par] == 1 ? (1 + max(dpup[par], max(L[par][lft[node]], R[par][rgt[node]]))) : 0);
}
pair<int, int> a = {p[node], 1};
if (cmp(a, res)) {
res = a;
}
int mx = dpup[node];
for (auto it : V[node]) {
if (it == par) {
continue;
}
int val = (p[it] == 1 ? dpdown[it] + 1 : 0);
pair<int, int> tmp = {p[node], 1 + mx + val};
if (cmp(tmp, res)) {
res = tmp;
}
mx = max(mx, val);
dfsup(it, node);
}
}
int main()
{
cin.tie(0)->sync_with_stdio(0);
int n; cin >> n;
for (int i = 0; i < n - 1; i++) {
int a, b; cin >> a >> b;
a--; b--;
V[a].push_back(b);
V[b].push_back(a);
}
for (int i = 0; i < n; i++) {
cin >> p[i];
}
dfsdown(0, -1);
dfsup(0, -1);
int gc = __gcd(res.first, res.second);
cout << res.first / gc << "/" << res.second / gc << endl;
return 0;
}
# | 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... |
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |