返回列表 發帖
本帖最後由 黃暐鈞 於 2025-3-22 15:10 編輯

APCS 實作題 10503 - 4
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int n;//人數
  4. int root;//根節點
  5. int res;
  6. int finalMaxChildDis;
  7. struct Node
  8. {
  9.     int parent=-1,h=0;
  10.     int maxChildDis=0,max=-1,sec=-1;
  11.     vector<int> child;
  12. };
  13. int main()
  14. {
  15.         cin>>n;
  16.         int finalMaxChildDis=-1;
  17.         Node node[n];//node資料庫_共n人
  18.         for(int i=0;i<n-1;i++)//n個人有n-1個連結
  19.         {
  20.             int p;//父節點
  21.             int c;//子節點
  22.             cin>>p>>c;
  23.             node[c].parent=p;//c屬於b->p屬於node[c].parent
  24.             node[p].child.push_back(c);//一個父節點可以同時有很多子節點->用vector存
  25.         }//建立關係

  26.         for(int i=0;i<n;i++)//n次
  27.         {
  28.             if(node[i].parent==-1)//該節點沒有設定父節點->最高->根節點
  29.             {
  30.                 root=i;
  31.             }
  32.             if(node[i].child.size()==0)//確認該節點的子節點數量:為0->最底部
  33.             {
  34.                 int h=0;
  35.                 int parent=node[i].parent;//額外定義 不影響node資料
  36.                 while(parent!=-1)//有父節點
  37.                 {
  38.                     h++;
  39.                     if(h>node[parent].h)
  40.                     {
  41.                         node[parent].h=h;//找最深
  42.                     }
  43.                     else
  44.                     {
  45.                         break;
  46.                     }
  47.                     parent=node[parent].parent;//繼續往上找
  48.                 }
  49.             }
  50.         }
  51.         for(int i=0;i<n;i++)//n次
  52.         {
  53.             if(node[i].child.size()>=2)//子節點數量>=2
  54.             {
  55.                 for(int j=0;j<node[i].child.size();j++)//重複'子節點數量'次
  56.                 {
  57.                     int childH=node[node[i].child[j]].h;//取出子節點的深度
  58.                     if(childH>node[i].max)//找最深
  59.                     {
  60.                         node[i].sec=node[i].max;//找第二深(可能介於兩個最大之間)
  61.                         node[i].max=childH;
  62.                     }
  63.                     else if(childH>node[i].sec)//介於兩個最大之間->更新第二大
  64.                     {
  65.                         node[i].sec=childH;
  66.                     }
  67.                 }
  68.                 node[i].maxChildDis=node[i].max+node[i].sec+2;//計算總距離
  69.                 if(node[i].maxChildDis>finalMaxChildDis)//比較並更新
  70.                 {
  71.                     finalMaxChildDis=node[i].maxChildDis;
  72.                 }
  73.             }
  74.         }
  75.         if(node[root].h>finalMaxChildDis)//根節點距離最遠 不用找另外的子節點距離and+2
  76.         {
  77.             res=node[root].h;
  78.         }
  79.         else
  80.         {
  81.             res=finalMaxChildDis;
  82.         }
  83.     cout<<res;
  84. }

  85. /*
  86. 8
  87. 0 1
  88. 0 2
  89. 0 3
  90. 7 0
  91. 1 4
  92. 1 5
  93. 3 6
  94. */

  95. /*
  96. 4
  97. 0 1
  98. 0 2
  99. 2 3
  100. */
複製代碼
APCS 觀念題:10510 - 12、13
12.(A)
13.(C)

TOP

返回列表