結果

問題 No.1928 Make a Binary Tree
ユーザー harurunharurun
提出日時 2021-12-15 20:02:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 288 ms / 3,000 ms
コード長 1,308 bytes
コンパイル時間 1,236 ms
コンパイル使用メモリ 94,800 KB
実行使用メモリ 54,752 KB
最終ジャッジ日時 2024-11-06 04:25:35
合計ジャッジ時間 10,461 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 10 ms
6,816 KB
testcase_16 AC 8 ms
6,816 KB
testcase_17 AC 6 ms
6,820 KB
testcase_18 AC 9 ms
6,820 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 6 ms
6,816 KB
testcase_21 AC 4 ms
6,816 KB
testcase_22 AC 8 ms
6,816 KB
testcase_23 AC 6 ms
6,816 KB
testcase_24 AC 9 ms
6,816 KB
testcase_25 AC 11 ms
6,820 KB
testcase_26 AC 224 ms
22,248 KB
testcase_27 AC 127 ms
15,068 KB
testcase_28 AC 140 ms
16,040 KB
testcase_29 AC 260 ms
24,980 KB
testcase_30 AC 110 ms
14,108 KB
testcase_31 AC 166 ms
17,652 KB
testcase_32 AC 249 ms
24,232 KB
testcase_33 AC 129 ms
15,288 KB
testcase_34 AC 163 ms
17,876 KB
testcase_35 AC 163 ms
26,916 KB
testcase_36 AC 175 ms
38,404 KB
testcase_37 AC 174 ms
25,008 KB
testcase_38 AC 2 ms
6,820 KB
testcase_39 AC 223 ms
39,920 KB
testcase_40 AC 219 ms
39,736 KB
testcase_41 AC 220 ms
39,744 KB
testcase_42 AC 220 ms
39,880 KB
testcase_43 AC 218 ms
39,880 KB
testcase_44 AC 222 ms
39,736 KB
testcase_45 AC 219 ms
39,804 KB
testcase_46 AC 231 ms
39,852 KB
testcase_47 AC 219 ms
39,804 KB
testcase_48 AC 224 ms
39,876 KB
testcase_49 AC 190 ms
54,752 KB
testcase_50 AC 270 ms
23,620 KB
testcase_51 AC 263 ms
23,596 KB
testcase_52 AC 263 ms
23,576 KB
testcase_53 AC 263 ms
23,540 KB
testcase_54 AC 269 ms
23,548 KB
testcase_55 AC 169 ms
37,556 KB
testcase_56 AC 277 ms
24,868 KB
testcase_57 AC 279 ms
24,912 KB
testcase_58 AC 288 ms
24,984 KB
testcase_59 AC 158 ms
22,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <iostream>
#include <utility>
#include <algorithm>
#include <queue>
using namespace std;

vector<vector<int>> Graph;
vector<bool> checked;
vector<priority_queue<int>> vec;

int dfs(int i,int parent){
  checked[i]=true;
  for(int to:Graph[i]){
    if(!checked[to]){
      int p=dfs(to,i);
      vec[i].push(p);
    }
  }
  int max_size=vec[i].size();
  int id=i;  
  for(int to:Graph[i]){
    if(to!=parent){
      if(vec[to].size()>max_size){
        id=to;
        max_size=vec[to].size();
      }
    }
  }
  if(id!=i){
    while(!vec[i].empty()){
      vec[id].push(vec[i].top());
      vec[i].pop();
    }
  }
  for(int to:Graph[i]){
    if(id!=to && to!=parent){
      while(!vec[to].empty()){
        vec[id].push(vec[to].top());
        vec[to].pop();
      }
    }
  }
  vec[i].swap(vec[id]);
  int res=1;
  if(vec[i].size()<=2){
    while(!vec[i].empty()){
      res+=vec[i].top();
      vec[i].pop();
    }
  }else{
    for(int j=0;j<2;j++){
      res+=vec[i].top();
      vec[i].pop();
    }
  }
  return res;
}

int main(){
  int N;
  cin>>N;
  Graph.resize(N);
  checked.resize(N,false);
  vec.resize(N);
  for(int i=0; i<N-1; i++){
    int x,y;
    cin>>x>>y;
    Graph[x-1].push_back(y-1);
    Graph[y-1].push_back(x-1);
  }
  int ans=dfs(0,-1);
  cout<<ans<<endl;
}
0