結果
問題 | No.1928 Make a Binary Tree |
ユーザー | ruthen71 |
提出日時 | 2022-05-06 22:31:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,114 bytes |
コンパイル時間 | 2,205 ms |
コンパイル使用メモリ | 205,812 KB |
実行使用メモリ | 507,708 KB |
最終ジャッジ日時 | 2024-07-05 23:53:05 |
合計ジャッジ時間 | 9,618 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
15,104 KB |
testcase_01 | AC | 5 ms
9,728 KB |
testcase_02 | AC | 5 ms
9,692 KB |
testcase_03 | AC | 5 ms
9,760 KB |
testcase_04 | AC | 5 ms
9,668 KB |
testcase_05 | AC | 5 ms
9,688 KB |
testcase_06 | AC | 5 ms
9,600 KB |
testcase_07 | AC | 5 ms
9,600 KB |
testcase_08 | AC | 6 ms
9,600 KB |
testcase_09 | AC | 5 ms
9,600 KB |
testcase_10 | AC | 5 ms
9,684 KB |
testcase_11 | AC | 5 ms
9,728 KB |
testcase_12 | AC | 5 ms
9,600 KB |
testcase_13 | AC | 6 ms
9,808 KB |
testcase_14 | AC | 5 ms
9,552 KB |
testcase_15 | AC | 10 ms
10,624 KB |
testcase_16 | AC | 10 ms
10,196 KB |
testcase_17 | AC | 8 ms
10,112 KB |
testcase_18 | AC | 11 ms
10,412 KB |
testcase_19 | AC | 6 ms
9,852 KB |
testcase_20 | AC | 10 ms
10,112 KB |
testcase_21 | AC | 7 ms
9,856 KB |
testcase_22 | AC | 9 ms
10,204 KB |
testcase_23 | AC | 7 ms
10,112 KB |
testcase_24 | AC | 10 ms
10,372 KB |
testcase_25 | AC | 11 ms
10,496 KB |
testcase_26 | AC | 174 ms
26,624 KB |
testcase_27 | AC | 100 ms
20,068 KB |
testcase_28 | AC | 111 ms
21,344 KB |
testcase_29 | AC | 208 ms
28,928 KB |
testcase_30 | AC | 94 ms
19,328 KB |
testcase_31 | AC | 125 ms
22,656 KB |
testcase_32 | AC | 200 ms
28,600 KB |
testcase_33 | AC | 102 ms
20,480 KB |
testcase_34 | AC | 135 ms
22,904 KB |
testcase_35 | AC | 83 ms
26,880 KB |
testcase_36 | TLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef _RUTHEN #include "debug.hpp" #else #define show(...) true #endif using ll = long long; #define rep(i, n) for (int i = 0; i < (n); i++) template <class T> using V = vector<T>; priority_queue<int> que[200005]; int main() { ios::sync_with_stdio(false); cin.tie(0); int N; cin >> N; V<V<int>> G(N); rep(i, N - 1) { int x, y; cin >> x >> y; x--, y--; G[x].push_back(y); G[y].push_back(x); } auto rec = [&](auto f, int cur, int par) -> void { for (auto &nex : G[cur]) { if (nex == par) continue; f(f, nex, cur); while (!que[nex].empty()) { que[cur].push(que[nex].top()); que[nex].pop(); } } int v = 1, cnt = 0; while (!que[cur].empty() && cnt < 2) { cnt++; v += que[cur].top(); que[cur].pop(); } que[cur].push(v); return; }; rec(rec, 0, -1); int ans = que[0].top(); cout << ans << '\n'; return 0; }