Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
125731 | 杨博煊 | 树的深度 | C++ | 通过 | 100 | 0 MS | 256 KB | 321 | 2024-01-23 22:38:29 |
#include<bits/stdc++.h> using namespace std; int l[1000],r[1000],n; int depth(int i){ int a = 0,b = 0; if(l[i]){ a = depth(l[i]) + 1; } if(r[i]){ b = depth(r[i]) + 1; } return max(a,b); } int main(){ cin>>n; int i; for(i = 1;i <= n;i++)cin>>l[i]>>r[i]; cout<<depth(1) + 1; return 0; }