# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
473739 |
2021-09-16T04:04:42 Z |
ntabc05101 |
Mag (COCI16_mag) |
C++14 |
|
723 ms |
262148 KB |
#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));
dpup[it] = (p[node] == 1 ? (1 + max(L[node][lft[it]], R[node][rgt[it]])): 0);
}
}
dpdown[node] = L[node].back();
L[node].clear(); R[node].clear();
}
void dfsup(int node, int par) {
if (node) {
dpup[node] = (p[par] == 1 ? max(dpup[node], 1 + dpup[par]) : 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 time |
Memory |
Grader output |
1 |
Correct |
39 ms |
70884 KB |
Output is correct |
2 |
Correct |
41 ms |
70764 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
39 ms |
70840 KB |
Output is correct |
2 |
Correct |
40 ms |
70852 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
632 ms |
205900 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
38 ms |
70776 KB |
Output is correct |
2 |
Runtime error |
564 ms |
262148 KB |
Execution killed with signal 9 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
566 ms |
262148 KB |
Execution killed with signal 9 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
701 ms |
183388 KB |
Output is correct |
2 |
Correct |
542 ms |
153996 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
652 ms |
188964 KB |
Output is correct |
2 |
Correct |
157 ms |
82372 KB |
Output is correct |
3 |
Runtime error |
555 ms |
262148 KB |
Execution killed with signal 9 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
155 ms |
82380 KB |
Output is correct |
2 |
Correct |
650 ms |
184232 KB |
Output is correct |
3 |
Correct |
704 ms |
129088 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
644 ms |
176224 KB |
Output is correct |
2 |
Correct |
668 ms |
182212 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
661 ms |
184864 KB |
Output is correct |
2 |
Correct |
723 ms |
129088 KB |
Output is correct |