結果

問題 No.1928 Make a Binary Tree
ユーザー NanashimaNanashima
提出日時 2022-05-06 23:44:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,226 bytes
コンパイル時間 1,913 ms
コンパイル使用メモリ 177,412 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2024-07-06 03:17:02
合計ジャッジ時間 9,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 7 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 144 ms
14,336 KB
testcase_27 AC 82 ms
10,112 KB
testcase_28 AC 90 ms
10,688 KB
testcase_29 AC 161 ms
15,892 KB
testcase_30 AC 76 ms
9,728 KB
testcase_31 AC 104 ms
11,776 KB
testcase_32 AC 158 ms
15,616 KB
testcase_33 AC 85 ms
10,368 KB
testcase_34 AC 108 ms
11,776 KB
testcase_35 AC 129 ms
15,244 KB
testcase_36 AC 144 ms
30,600 KB
testcase_37 AC 142 ms
16,340 KB
testcase_38 WA -
testcase_39 AC 156 ms
29,568 KB
testcase_40 AC 158 ms
29,568 KB
testcase_41 AC 162 ms
29,696 KB
testcase_42 AC 160 ms
29,676 KB
testcase_43 AC 154 ms
29,684 KB
testcase_44 AC 157 ms
29,568 KB
testcase_45 AC 158 ms
29,568 KB
testcase_46 AC 156 ms
29,636 KB
testcase_47 AC 161 ms
29,532 KB
testcase_48 AC 157 ms
29,568 KB
testcase_49 AC 150 ms
43,008 KB
testcase_50 AC 160 ms
14,976 KB
testcase_51 AC 157 ms
15,028 KB
testcase_52 AC 159 ms
14,976 KB
testcase_53 AC 163 ms
15,104 KB
testcase_54 AC 166 ms
14,976 KB
testcase_55 AC 143 ms
32,128 KB
testcase_56 AC 172 ms
16,128 KB
testcase_57 AC 169 ms
16,256 KB
testcase_58 AC 169 ms
15,952 KB
testcase_59 AC 121 ms
17,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0; i<(n); i++)
#define INF ((1LL<<62)-(1LL<<31))
#define all(a)  (a).begin(),(a).end()
#define rall(a)  (a).rbegin(),(a).rend()
typedef long long ll;
typedef pair<ll,ll> pl;

ll ans=0;

priority_queue<ll,vector<ll>> dfs(vector<vector<int>> &g,int pos,int par) {
    ll cnt=0,ret=1;
    priority_queue<ll,vector<ll>> pq;
    for(auto nv:g[pos]) {
        if(nv==par) continue;
        cnt++;
        priority_queue<ll,vector<ll>> pq2=dfs(g,nv,pos);
        if((int)pq2.size()>(int)pq.size()) swap(pq,pq2);
        while(!pq2.empty()) {
            pq.push(pq2.top());
            pq2.pop();
        }
    }
    if(cnt==0) {
        pq.push(1);
        return pq;
    }
    rep(i,2) {
        if(pq.empty()) break;
        ret+=pq.top();
        pq.pop();
    }
    if(pos==0) ans=ret;
    pq.push(ret);
    return pq;
}

int main() {
    ll n;
    cin >> n;
    vector<vector<int>> g(n,vector<int> ());
    vector<int> deg(n,0);
    rep(i,n-1) {
        int u,v;
        cin >> u >> v;
        u--; v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    priority_queue<ll,vector<ll>> pq=dfs(g,0,-1);
    cout << ans << endl;
    return 0;
}
0