結果
問題 | No.1928 Make a Binary Tree |
ユーザー | harurun |
提出日時 | 2021-12-09 11:04:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,016 bytes |
コンパイル時間 | 1,281 ms |
コンパイル使用メモリ | 85,024 KB |
実行使用メモリ | 665,624 KB |
最終ジャッジ日時 | 2024-11-06 04:24:08 |
合計ジャッジ時間 | 8,729 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
20,500 KB |
testcase_01 | AC | 7 ms
13,552 KB |
testcase_02 | AC | 7 ms
13,552 KB |
testcase_03 | AC | 7 ms
13,556 KB |
testcase_04 | AC | 7 ms
13,556 KB |
testcase_05 | AC | 7 ms
13,556 KB |
testcase_06 | AC | 8 ms
13,552 KB |
testcase_07 | AC | 7 ms
13,680 KB |
testcase_08 | AC | 7 ms
13,680 KB |
testcase_09 | AC | 7 ms
13,556 KB |
testcase_10 | AC | 7 ms
13,552 KB |
testcase_11 | AC | 7 ms
13,548 KB |
testcase_12 | AC | 7 ms
13,556 KB |
testcase_13 | AC | 7 ms
13,680 KB |
testcase_14 | AC | 7 ms
13,552 KB |
testcase_15 | AC | 11 ms
14,060 KB |
testcase_16 | AC | 11 ms
14,064 KB |
testcase_17 | AC | 10 ms
13,808 KB |
testcase_18 | AC | 12 ms
14,064 KB |
testcase_19 | AC | 7 ms
13,680 KB |
testcase_20 | AC | 9 ms
13,808 KB |
testcase_21 | AC | 8 ms
13,808 KB |
testcase_22 | AC | 10 ms
14,064 KB |
testcase_23 | AC | 9 ms
13,804 KB |
testcase_24 | AC | 11 ms
14,064 KB |
testcase_25 | AC | 12 ms
14,196 KB |
testcase_26 | AC | 156 ms
23,924 KB |
testcase_27 | AC | 85 ms
20,076 KB |
testcase_28 | AC | 95 ms
20,720 KB |
testcase_29 | AC | 187 ms
25,200 KB |
testcase_30 | AC | 75 ms
19,564 KB |
testcase_31 | AC | 115 ms
21,492 KB |
testcase_32 | AC | 180 ms
25,004 KB |
testcase_33 | AC | 92 ms
20,336 KB |
testcase_34 | AC | 114 ms
21,744 KB |
testcase_35 | AC | 81 ms
26,228 KB |
testcase_36 | MLE | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <vector> #include <iostream> #include <utility> #include <algorithm> using namespace std; vector<int> Graph[200010]; int checked[200010]; vector<int> vec[200010]; int dfs(int i,int parent){ checked[i]=1; for(int to:Graph[i]){ if(!checked[to]){ int p=dfs(to,i); vec[i].emplace_back(p); } } int res=1; sort(vec[i].rbegin(),vec[i].rend()); if(vec[i].size()<=2){ for(int j:vec[i]){ res+=j; } }else{ for(int j=0;j<2;j++){ res+=vec[i][j]; } if(parent!=-1){ for(int j=2;j<vec[i].size();j++){ vec[parent].emplace_back(vec[i][j]); } vec[i].clear(); } } return res; } int N; int x,y; int ans; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); cin>>N; for(int i=0; i<N-1; i++){ cin>>x>>y; Graph[x-1].emplace_back(y-1); Graph[y-1].emplace_back(x-1); } ans=dfs(0,-1); cout<<ans<<"\n"; }