Submission #526219

#TimeUsernameProblemLanguageResultExecution timeMemory
526219mjhmjh1104Mountains and Valleys (CCO20_day1problem3)C++17
25 / 25
6965 ms384640 KiB
#include <cstdio> #include <vector> #include <utility> #include <algorithm> using namespace std; struct Item { int posde; int negde; int ans; Item () {} Item (int posde, int negde, int ans): posde(posde), negde(negde), ans(ans) {} } sp_split[19][500000]; int lt_depth[500000][3], lt_dist[500000][3]; void push(int *v, int x) { auto t = min_element(v, v + 3); if (x > *t) *t = x; } void pop(int *v, int x) { *find(v, v + 3, x) = 0; } int first(int *v) { return *max_element(v, v + 3); } int second(int *v) { return v[0] + v[1] + v[2] - *min_element(v, v + 3); } int n, m; vector<int> tree[500000], child[500000]; vector<pair<int, int>> adj[500000]; int depth[500000], sp[19][500000], sp_dist[19][500000]; int max_depth[500000], rev_max_depth[500000], dist[500000], rev_dist[500000]; int prev_dist[500000], prev_depth[500000][2]; inline Item query_sp_res(int l, int x) { if (l == x) return Item{ (int)-1e9, (int)-1e9, (int)-1e9 }; Item ret = { prev_depth[x][0] + depth[x], prev_depth[x][0] - depth[x], (int)-1e9 }; for (int t = 18; t >= 0; t--) if (sp[t][x] != -1 && depth[sp[t][x]] > depth[l]) { ret.ans = max({ sp_split[t][x].ans, ret.ans, sp_split[t][x].posde + ret.negde }); ret.posde = max(sp_split[t][x].posde, ret.posde); ret.negde = max(sp_split[t][x].negde, ret.negde); x = sp[t][x]; } return ret; } int dfs_dist(int x) { max_depth[x] = 0; dist[x] = 0; int mx0 = (int)-1e9, mx1 = (int)-1e9; for (auto &i: child[x]) { int t = dfs_dist(i) + 1; max_depth[x] = max(max_depth[x], t); if (t > mx0) mx1 = mx0, mx0 = t; else if (t > mx1) mx1 = t; dist[x] = max(dist[x], dist[i]); } dist[x] = max(dist[x], mx0 + max(mx1, 0)); return max_depth[x]; } void dfs_rev_dist(int x) { for (auto &i: child[x]) { push(lt_depth[x], max_depth[i] + 1); if (prev_depth[x][0] < max_depth[i] + 1) prev_depth[x][1] = prev_depth[x][0], prev_depth[x][0] = max_depth[i] + 1; else if (prev_depth[x][1] < max_depth[i] + 1) prev_depth[x][1] = max_depth[i] + 1; push(lt_dist[x], dist[i]); if (prev_dist[x] < dist[i]) prev_dist[x] = dist[i]; } for (auto &i: child[x]) { pop(lt_depth[x], max_depth[i] + 1); pop(lt_dist[x], dist[i]); rev_dist[i] = max({ rev_max_depth[i] = max(first(lt_depth[x]), rev_max_depth[x]) + 1, second(lt_depth[x]), first(lt_depth[x]) + rev_dist[x]}); push(lt_depth[x], max_depth[i] + 1); push(lt_dist[x], dist[i]); } for (auto &i: child[x]) dfs_rev_dist(i); } void dfs_construct(int x) { for (auto &i: child[x]) { pop(lt_dist[x], dist[i]); sp_dist[0][i] = first(lt_dist[x]); push(lt_dist[x], dist[i]); pop(lt_depth[x], max_depth[i] + 1); int V = first(lt_depth[x]); sp_dist[0][i] = max(sp_dist[0][i], second(lt_depth[x])); sp_split[0][i].posde = V + depth[x]; sp_split[0][i].negde = V - depth[x]; push(lt_depth[x], max_depth[i] + 1); } for (auto &i: child[x]) dfs_construct(i); } void dfs_child(int x, int prev = -1) { sp[0][x] = prev; for (auto &i: tree[x]) if (i != prev) { depth[i] = depth[x] + 1; child[x].push_back(i); dfs_child(i, x); } } int A, B; inline int lca(int u, int v) { bool sw = false; if (depth[u] < depth[v]) swap(u, v), sw = true; int diff = depth[u] - depth[v] - 1; if (~diff) { for (int t = 18; t >= 0; t--) if (diff >= 1 << t) { diff -= 1 << t; u = sp[t][u]; } if (sw) B = u; else A = u; u = sp[0][u]; if (u == v) return u; } for (int t = 18; t >= 0; t--) if (sp[t][u] != -1 && sp[t][v] != -1 && sp[t][u] != sp[t][v]) { u = sp[t][u]; v = sp[t][v]; } A = u, B = v; if (sw) swap(A, B); return sp[0][u]; } inline int query_sp_dist(int u, int v, int l) { int ret = 0; if (u != l) { ret = max(prev_depth[u][0] + prev_depth[u][1], prev_dist[u]); //u = sp[0][u]; } if (v != l) { ret = max(prev_depth[v][0] + prev_depth[v][1], prev_dist[v]); //v = sp[0][v]; } for (int t = 18; t >= 0; t--) if (sp[t][u] != -1 && depth[sp[t][u]] > depth[l]) { ret = max(ret, sp_dist[t][u]); u = sp[t][u]; } for (int t = 18; t >= 0; t--) if (sp[t][v] != -1 && depth[sp[t][v]] > depth[l]) { ret = max(ret, sp_dist[t][v]); v = sp[t][v]; } return ret; } int main() { scanf("%d%d", &n, &m); while (m--) { int x, y, w; scanf("%d%d%d", &x, &y, &w); if (w == 1) { tree[x].push_back(y); tree[y].push_back(x); } else adj[x].push_back({ y, w }); } for (int i = 0; i < n; i++) prev_dist[i] = prev_depth[i][0] = prev_depth[i][1] = (int)-1e9; dfs_child(0); dfs_dist(0); dfs_rev_dist(0); dfs_construct(0); for (int t = 1; t < 19; t++) for (int i = 0; i < n; i++) { if (sp[t - 1][i] == -1) { sp[t][i] = -1; sp_dist[t][i] = sp_dist[t - 1][i]; sp_split[t][i] = sp_split[t - 1][i]; } else { sp[t][i] = sp[t - 1][sp[t - 1][i]]; sp_dist[t][i] = max(sp_dist[t - 1][i], sp_dist[t - 1][sp[t - 1][i]]); sp_split[t][i].ans = max({ sp_split[t - 1][sp[t - 1][i]].ans, sp_split[t - 1][i].ans, sp_split[t - 1][sp[t - 1][i]].posde + sp_split[t - 1][i].negde }); sp_split[t][i].posde = max(sp_split[t - 1][sp[t - 1][i]].posde, sp_split[t - 1][i].posde); sp_split[t][i].negde = max(sp_split[t - 1][sp[t - 1][i]].negde, sp_split[t - 1][i].negde); } } int res = 2 * (n - 1) - dist[0]; for (int i = 0; i < n; i++) for (auto [ j, w ]: adj[i]) { A = B = -1; int l = lca(i, j); int ds = depth[i] + depth[j] - depth[l] - depth[l]; int curr = w + 2 * (n - 1) - ds - 1; int G = 0, y = 0; if (A != -1) pop(lt_depth[l], max_depth[A] + 1); if (B != -1) pop(lt_depth[l], max_depth[B] + 1); if (A != -1) pop(lt_dist[l], dist[A]); if (B != -1) pop(lt_dist[l], dist[B]); G = first(lt_depth[l]); y = max({ y, G + rev_max_depth[l] - 1, second(lt_depth[l]) - 1, first(lt_dist[l]) - 1 }); if (A != -1) push(lt_depth[l], max_depth[A] + 1); if (B != -1) push(lt_depth[l], max_depth[B] + 1); if (A != -1) push(lt_dist[l], dist[A]); if (B != -1) push(lt_dist[l], dist[B]); Item first = query_sp_res(l, i); Item second = query_sp_res(l, j); int Alt = first.negde + depth[l]; int Brt = second.negde + depth[l]; int Lt = max(rev_max_depth[l], G); res = min(res, curr - max({ y, Alt + max(Brt, Lt) + 1, max(Alt, Lt) + Brt + 1, first.ans + 1, second.ans + 1, rev_dist[l] - 1, query_sp_dist(i, j, l) - 1 })); } printf("%d", res); }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:157:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
  157 |     scanf("%d%d", &n, &m);
      |     ~~~~~^~~~~~~~~~~~~~~~
Main.cpp:160:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
  160 |         scanf("%d%d%d", &x, &y, &w);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~
#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...