結果

問題 No.1928 Make a Binary Tree
ユーザー colognecologne
提出日時 2022-05-10 15:00:51
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 260 ms / 3,000 ms
コード長 1,005 bytes
コンパイル時間 2,895 ms
コンパイル使用メモリ 253,872 KB
実行使用メモリ 48,656 KB
最終ジャッジ日時 2024-07-17 20:54:22
合計ジャッジ時間 13,296 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 9 ms
6,940 KB
testcase_16 AC 7 ms
6,944 KB
testcase_17 AC 6 ms
6,940 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 6 ms
6,944 KB
testcase_21 AC 4 ms
6,944 KB
testcase_22 AC 7 ms
6,940 KB
testcase_23 AC 6 ms
6,940 KB
testcase_24 AC 8 ms
6,940 KB
testcase_25 AC 9 ms
6,940 KB
testcase_26 AC 200 ms
13,368 KB
testcase_27 AC 113 ms
9,596 KB
testcase_28 AC 124 ms
10,240 KB
testcase_29 AC 239 ms
14,856 KB
testcase_30 AC 110 ms
9,216 KB
testcase_31 AC 150 ms
10,996 KB
testcase_32 AC 231 ms
14,384 KB
testcase_33 AC 117 ms
9,724 KB
testcase_34 AC 148 ms
11,064 KB
testcase_35 AC 150 ms
14,596 KB
testcase_36 AC 171 ms
32,468 KB
testcase_37 AC 166 ms
14,932 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 208 ms
31,828 KB
testcase_40 AC 205 ms
31,672 KB
testcase_41 AC 207 ms
31,756 KB
testcase_42 AC 204 ms
31,848 KB
testcase_43 AC 206 ms
31,640 KB
testcase_44 AC 204 ms
31,708 KB
testcase_45 AC 202 ms
31,704 KB
testcase_46 AC 207 ms
31,688 KB
testcase_47 AC 214 ms
31,712 KB
testcase_48 AC 204 ms
31,740 KB
testcase_49 AC 187 ms
48,656 KB
testcase_50 AC 237 ms
14,168 KB
testcase_51 AC 239 ms
14,204 KB
testcase_52 AC 240 ms
14,108 KB
testcase_53 AC 237 ms
14,140 KB
testcase_54 AC 240 ms
14,112 KB
testcase_55 AC 178 ms
34,448 KB
testcase_56 AC 260 ms
14,948 KB
testcase_57 AC 258 ms
14,916 KB
testcase_58 AC 259 ms
14,908 KB
testcase_59 AC 167 ms
16,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int N;
    cin >> N;
    vector<vector<int>> adj(N);
    for (int i = 0; i < N - 1; i++)
    {
        int u, v;
        cin >> u >> v;
        adj[--u].push_back(--v);
        adj[v].push_back(u);
    }
    function<priority_queue<int> *(int, int)> dfs = [&](int a, int p) -> priority_queue<int> *
    {
        priority_queue<int> *S = new priority_queue<int>();
        for (auto x : adj[a])
            if (x != p)
            {
                priority_queue<int> *T = dfs(x, a);
                if (S->size() < T->size())
                    swap(S, T);
                while (!T->empty())
                    S->push(T->top()), T->pop();
                delete T;
            }
        int v = 1;
        for (int i = 0; i < 2; i++)
            if (!S->empty())
                v += S->top(), S->pop();
        S->push(v);
        return S;
    };

    auto S = dfs(0, -1);
    cout << S->top() << endl;
    delete S;

    return 0;
}
0