Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99759 赵德明 树的深度 C++ 通过 100 0 MS 248 KB 380 2023-08-23 17:09:09

Tests(8/8):


#include<bits/stdc++.h> using namespace std; struct tree{ int ze,ye; }; tree t[1005]; int maxdeepth=0; void stf(int w,int d){ maxdeepth=max(maxdeepth,d); if(t[w].ze!=0) stf(t[w].ze,d+1); if(t[w].ye!=0) stf(t[w].ye,d+1); return; } int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ cin>>t[i].ze>>t[i].ye; } stf(1,1); cout<<maxdeepth; return 0; }


测评信息: