CF 1453E Dog Snacks

题目描述

https://codeforces.com/contest/1453/problem/E

Solution

首先我们进入一个点 $u$ 就一定会将其子树吃完

我们考虑点 $u$ 的子树中最后吃的那个点一定是深度最小的那个点,因为这样方便出去

其它儿子对于答案的贡献在于去兄弟的位置

根节点要特殊处理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#define maxn 200010
using namespace std;

int n;

struct Edge {
int to, next;
} e[maxn * 2]; int c1, head[maxn];
inline void add_edge(int u, int v) {
e[c1].to = v; e[c1].next = head[u]; head[u] = c1++;
}

int f[maxn], dep[maxn], ans;
void dfs(int u, int fa) {
vector<int> a;
for (int i = head[u]; ~i; i = e[i].next) {
int v = e[i].to; if (v == fa) continue;
dep[v] = dep[u] + 1; dfs(v, u);
a.push_back(f[v]);
}
if (a.empty()) return (void) (f[u] = dep[u]);
if (u != 1) {
if (a.size() > 1) ans = max(*max_element(a.begin(), a.end()) - dep[u] + 1, ans);
f[u] = *min_element(a.begin(), a.end());
}
else {
sort(a.begin(), a.end());
ans = max({ans, a.back() - dep[u], a.size() > 1 ? a[a.size() - 2] - dep[u] + 1 : 0});
}
}

void work() { fill(head, head + maxn, -1);
cin >> n;
for (int i = 1; i < n; ++i) {
int x, y; cin >> x >> y;
add_edge(x, y); add_edge(y, x);
} ans = 0; dep[1] = 1; dfs(1, 0); cout << ans << "\n";
}

int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr); cout.tie(nullptr);

int T; cin >> T;
while (T--) work();
return 0;
}