Submission #137622

# Submission time Handle Problem Language Result Execution time Memory
137622 2019-07-28T07:40:13 Z abacaba Mag (COCI16_mag) C++14
48 / 120
625 ms 163828 KB
#include <bits/stdc++.h>
using namespace std;
 
#define int long long
 
const int inf = 2e18;
const int N = 2e6 + 15;
int n, m, a[N], dp[N], dpup[N];
vector <int> g[N];
pair <int, int> ans = make_pair(0LL, 0LL);
 
void dfs(int v, int p = 0) {
    int now = 0;
    for(int to : g[v])
        if(p != to) {
            dfs(to, v);
            now = max(now, dp[to]);
        }
    pair <int, int> x = {a[v], dpup[p] + 1LL + now};
    if(ans == make_pair(0LL, 0LL) || x.first * ans.second < ans.first * x.second) {
        ans = x;
        int c = __gcd(x.first, x.second);
        if(c)
            ans.first /= c, ans.second /= c;
    }
}
 
void calc(int v, int p = 0) {
    if(a[v] == 1)
        dpup[v] = dpup[p] + 1;
    for(int to : g[v])
        if(to != p) {
            calc(to, v);
            if(a[v] == 1)
                dp[v] = max(dp[v], dp[to] + 1);
        }
}
 
#undef int
 
int main() {
    #define int long long
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    cin >> n;
    for(int i = 1; i < n; ++i) {
        int u, v;
        cin >> u >> v;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    for(int i = 1; i <= n; ++i) {
        cin >> a[i];
        pair <int, int> x = {a[i], 1LL};
        if(ans == make_pair(0LL, 0LL) || a[i] < ans.first)
            ans = x;
    }
    calc(1);
    dfs(1);
    cout << ans.first << '/' << ans.second << endl;
    return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 45 ms 47480 KB Output is correct
2 Correct 45 ms 47352 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 45 ms 47352 KB Output is correct
2 Correct 45 ms 47352 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 450 ms 116452 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Correct 45 ms 47352 KB Output is correct
2 Correct 587 ms 163828 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 565 ms 161876 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 625 ms 101908 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 481 ms 104240 KB Output is correct
2 Incorrect 125 ms 53368 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 131 ms 53440 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 457 ms 98712 KB Output is correct
2 Incorrect 498 ms 101348 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Correct 533 ms 102660 KB Output is correct
2 Incorrect 433 ms 77944 KB Output isn't correct