結果

問題 No.1928 Make a Binary Tree
ユーザー 👑 rin204rin204
提出日時 2022-05-06 21:45:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 989 ms / 3,000 ms
コード長 811 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 385,720 KB
最終ジャッジ日時 2024-07-05 22:57:05
合計ジャッジ時間 26,337 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,392 KB
testcase_01 AC 36 ms
53,148 KB
testcase_02 AC 35 ms
52,744 KB
testcase_03 AC 34 ms
53,276 KB
testcase_04 AC 33 ms
53,436 KB
testcase_05 AC 32 ms
52,620 KB
testcase_06 AC 34 ms
53,508 KB
testcase_07 AC 34 ms
54,740 KB
testcase_08 AC 35 ms
54,220 KB
testcase_09 AC 35 ms
53,424 KB
testcase_10 AC 34 ms
53,220 KB
testcase_11 AC 33 ms
52,836 KB
testcase_12 AC 33 ms
52,468 KB
testcase_13 AC 35 ms
53,356 KB
testcase_14 AC 33 ms
54,208 KB
testcase_15 AC 115 ms
78,384 KB
testcase_16 AC 107 ms
77,704 KB
testcase_17 AC 104 ms
77,580 KB
testcase_18 AC 113 ms
78,248 KB
testcase_19 AC 76 ms
76,460 KB
testcase_20 AC 102 ms
77,632 KB
testcase_21 AC 93 ms
77,092 KB
testcase_22 AC 119 ms
77,428 KB
testcase_23 AC 107 ms
77,568 KB
testcase_24 AC 121 ms
78,288 KB
testcase_25 AC 117 ms
78,416 KB
testcase_26 AC 521 ms
100,096 KB
testcase_27 AC 357 ms
91,528 KB
testcase_28 AC 373 ms
93,404 KB
testcase_29 AC 702 ms
103,856 KB
testcase_30 AC 320 ms
90,304 KB
testcase_31 AC 406 ms
95,068 KB
testcase_32 AC 569 ms
103,760 KB
testcase_33 AC 368 ms
91,392 KB
testcase_34 AC 426 ms
94,784 KB
testcase_35 AC 347 ms
117,724 KB
testcase_36 AC 816 ms
258,336 KB
testcase_37 AC 442 ms
104,692 KB
testcase_38 AC 37 ms
52,752 KB
testcase_39 AC 937 ms
247,588 KB
testcase_40 AC 949 ms
249,192 KB
testcase_41 AC 946 ms
246,416 KB
testcase_42 AC 946 ms
247,228 KB
testcase_43 AC 939 ms
248,848 KB
testcase_44 AC 980 ms
247,616 KB
testcase_45 AC 971 ms
249,828 KB
testcase_46 AC 953 ms
247,364 KB
testcase_47 AC 958 ms
246,348 KB
testcase_48 AC 972 ms
248,384 KB
testcase_49 AC 989 ms
385,720 KB
testcase_50 AC 565 ms
99,628 KB
testcase_51 AC 545 ms
99,328 KB
testcase_52 AC 552 ms
99,552 KB
testcase_53 AC 544 ms
99,196 KB
testcase_54 AC 535 ms
99,180 KB
testcase_55 AC 751 ms
257,184 KB
testcase_56 AC 621 ms
104,320 KB
testcase_57 AC 614 ms
104,560 KB
testcase_58 AC 622 ms
104,200 KB
testcase_59 AC 468 ms
124,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
from heapq import *

n = int(input())
edges = [[] for _ in range(n)]
for _ in range(n - 1):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append(v)
    edges[v].append(u)

def dfs(pos, bpos):
    hq = []
    for npos in edges[pos]:
        if npos == bpos:
            continue
        else:
            tmp = dfs(npos, pos)
            if len(hq) > len(tmp):
                for t in tmp:
                    heappush(hq, t)
            else:
                for h in hq:
                    heappush(tmp, h)
                hq = tmp
    add = -1
    for _ in range(2):
        if hq:
            add += heappop(hq)
    heappush(hq, add)
    return hq

hq = dfs(0, -1)
print(-hq[0])
0