結果
問題 | No.1976 Cut then Connect |
ユーザー | magsta |
提出日時 | 2022-03-24 19:11:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,931 bytes |
コンパイル時間 | 1,931 ms |
コンパイル使用メモリ | 175,724 KB |
実行使用メモリ | 16,796 KB |
最終ジャッジ日時 | 2024-09-20 22:35:44 |
合計ジャッジ時間 | 5,459 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; struct Edge { int u; int v; int cost; Edge(int a, int b, int c) : u(a), v(b), cost(c) { } }; using Graph = vector<vector<Edge>>; vector<int> dp; int max_, max_2; void dfs(const Graph& G, int v, int p, int x, bool flag) { if (x == v) flag = false; for (auto nv : G[v]) { if (nv.v == p) continue; dfs(G, nv.v, v, x, flag); } if (flag) { int max1 = 0, max2 = 0; for (auto c : G[v]) { if (c.v == p) continue; if (max1 < dp[c.v]) { max2 = max1; max1 = dp[c.v]; } else if (max2 < dp[c.v]) { max2 = dp[c.v]; } } max_ = max(max_, max1 + max2 + 1); dp[v] = max1 + 1; } else { int max1 = 0, max2 = 0; for (auto c : G[v]) { if (c.v == p) continue; if (max1 < dp[c.v]) { max2 = max1; max1 = dp[c.v]; } else if (max2 < dp[c.v]) { max2 = dp[c.v]; } } max_2 = max(max_2, max1 + max2 + 1); dp[v] = max1 + 1; } if (x == v) dp[v] = 0; } void dfs2(const Graph& G, int v, int p) { for (auto nv : G[v]) { if (nv.v == p) continue; dfs2(G, nv.v, v); } ; for (auto c : G[v]) { if (c.v == p) continue; dp[v] = max(dp[v], dp[c.v] + 1); } } int main() { int N; cin >> N; Graph G(N); for (int i = 0; i < N - 1; i++) { int a, b; cin >> a >> b; G[a - 1].emplace_back(a - 1, b - 1, 1); G[b - 1].emplace_back(b - 1, a - 1, 1); } int ans = 0; for (int i = 0; i < N; i++) { dp.assign(N, 0); max_ = 0; max_2 = 0; dfs(G, 0, -1, i, true); ans = max(ans, max_ + max_2); } cout << ans << endl; }