Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99758 scl111104 树的深度 C++ 通过 100 0 MS 252 KB 377 2023-08-23 17:07:12

Tests(8/8):


#include <bits/stdc++.h> using namespace std; int mx; struct shu{ int l, r; }a[10005]; void dfs(int u, int depth){ mx = max(depth,mx); if(a[u].l != 0) dfs(a[u].l, depth + 1); if(a[u].r != 0) dfs(a[u].r, depth + 1); } int main (){ int n; cin >> n; for (int i = 1; i <= n; i++){ cin >> a[i].l >> a[i].r; } dfs(1, 1); cout << mx; return 0; }


测评信息: