0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 14:25:24 +00:00
OI-codes/Luogu/P4913/P4913.cpp

26 lines
513 B
C++

#include <bits/stdc++.h>
using namespace std;
int n, l[1000005], r[1000005];
int dfs(int now, int cnt) {
if (l[now] == 0 && r[now] == 0) {
return cnt;
} else if (l[now] == 0) {
return dfs(r[now], cnt + 1);
} else if (r[now] == 0) {
return dfs(l[now], cnt + 1);
}
return max(dfs(l[now], cnt + 1), dfs(r[now], cnt + 1));
}
int main() {
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> l[i] >> r[i];
}
cout << dfs(1, 1) << endl;
return 0;
}