제출 #473738

#제출 시각아이디문제언어결과실행 시간메모리
473738ntabc05101Mag (COCI16_mag)C++14
84 / 120
786 ms262148 KiB
#include<bits/stdc++.h> using namespace std; const int MAX = 1000000; 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> adj[MAX]; pair<int, int> res = {1e9, 1}; void dfsdown(int node, int par) { L[node].push_back(0); for (auto it : adj[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)adj[node].size() - 1; i >= 0; i--) { int it = adj[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 : adj[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--; adj[a].push_back(b); adj[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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...