- #include<bits/stdc++.h>
- using namespace std;
- int n;//人數
- int root;//根節點
- int res;
- int finalMaxChildDis;
- struct Node
- {
- int parent=-1,h=0;
- int maxChildDis=0,max=-1,sec=-1;
- vector<int> child;
- };
- int main()
- {
- cin>>n;
- int finalMaxChildDis=-1;
- Node node[n];//node資料庫_共n人
- for(int i=0;i<n-1;i++)//n個人有n-1個連結
- {
- int p;//父節點
- int c;//子節點
- cin>>p>>c;
- node[c].parent=p;//c屬於b->p屬於node[c].parent
- node[p].child.push_back(c);//一個父節點可以同時有很多子節點->用vector存
- }//建立關係
- for(int i=0;i<n;i++)//n次
- {
- if(node[i].parent==-1)//該節點沒有設定父節點->最高->根節點
- {
- root=i;
- }
- if(node[i].child.size()==0)//確認該節點的子節點數量:為0->最底部
- {
- int h=0;
- int parent=node[i].parent;//額外定義 不影響node資料
- while(parent!=-1)//有父節點
- {
- h++;
- if(h>node[parent].h)
- {
- node[parent].h=h;//找最深
- }
- else
- {
- break;
- }
- parent=node[parent].parent;//繼續往上找
- }
- }
- }
- for(int i=0;i<n;i++)//n次
- {
- if(node[i].child.size()>=2)//子節點數量>=2
- {
- for(int j=0;j<node[i].child.size();j++)//重複'子節點數量'次
- {
- int childH=node[node[i].child[j]].h;//取出子節點的深度
- if(childH>node[i].max)//找最深
- {
- node[i].sec=node[i].max;//找第二深(可能介於兩個最大之間)
- node[i].max=childH;
- }
- else if(childH>node[i].sec)//介於兩個最大之間->更新第二大
- {
- node[i].sec=childH;
- }
- }
- node[i].maxChildDis=node[i].max+node[i].sec+2;//計算總距離
- if(node[i].maxChildDis>finalMaxChildDis)//比較並更新
- {
- finalMaxChildDis=node[i].maxChildDis;
- }
- }
- }
- if(node[root].h>finalMaxChildDis)//根節點距離最遠 不用找另外的子節點距離and+2
- {
- res=node[root].h;
- }
- else
- {
- res=finalMaxChildDis;
- }
- cout<<res;
- }
複製代碼 |