# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
211386 | Fischer | Torrent (COI16_torrent) | C++14 | 306 ms | 23032 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 3e5 + 10;
bool vis[maxn];
vector<int> g[maxn];
int n, a, b;
int dp[maxn];
int dfs(int x) {
vis[x] = 1;
vector<int> t;
for (int v : g[x]) {
if (vis[v]) continue;
dfs(v);
t.push_back(dp[v]);
}
sort(t.rbegin(), t.rend());
int ans = 0;
for (int i = 0; i < t.size(); ++i) {
ans = max(ans, t[i] + i + 1);
}
dp[x] = ans;
}
int main() {
cin >> n >> a >> b;
for (int i = 1; i <= n-1; ++i) {
int x, y;
cin >> x >> y;
g[x].push_back(y);
}
vis[a] = vis[b] = 1;
dfs(a); dfs(b);
cout << max(dp[a], dp[b]) << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |