0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 06:05:25 +00:00
OI-codes/Luogu/P5197/P5197.cpp

16 lines
259 B
C++

#include <bits/stdc++.h>
using namespace std;
int n, u, v, deg[100005], ans;
int main() {
cin >> n;
for (int i = 1; i < n; i++) {
cin >> u >> v;
ans = max({ans, ++deg[u], ++deg[v]});
}
cout << ++ans << endl;
return 0;
}