Submission #473740

# Submission time Handle Problem Language Result Execution time Memory
473740 2021-09-16T04:12:51 Z ntabc05101 Mag (COCI16_mag) C++14
84 / 120
533 ms 186752 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, R;
int lft[MAX], rgt[MAX];
vector<int> adj[MAX];
pair<int, int> res = {1e9, 1};

void dfsdown(int node, int par) {
  L.push_back(0);
  for (auto &it : adj[node]) {
    if (it != par) {
      dfsdown(it, node);
      lft[it] = (int)L.size() - 1;
      L.push_back(max(L.back(), p[it] == 1 ? dpdown[it] + 1 : 0));
    }
  }

  R.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.size() - 1;
      R.push_back(max(R.back(), p[it] == 1 ? dpdown[it] + 1 : 0));

      dpup[it] = (p[node] == 1 ? (1 + max(L[lft[it]], R[rgt[it]])): 0);
    }
  }

  dpdown[node] = L.back();
  L.clear(); R.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 14 ms 23884 KB Output is correct
2 Correct 14 ms 23884 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 15 ms 23800 KB Output is correct
2 Correct 14 ms 23832 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 433 ms 103748 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 16 ms 23756 KB Output is correct
2 Correct 533 ms 186752 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 509 ms 169028 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 445 ms 74308 KB Output is correct
2 Correct 364 ms 61308 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 431 ms 78484 KB Output is correct
2 Incorrect 107 ms 29124 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 87 ms 28908 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 417 ms 72504 KB Output is correct
2 Correct 439 ms 73844 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 511 ms 75208 KB Output is correct
2 Incorrect 461 ms 49708 KB Output isn't correct