結果

問題 No.1928 Make a Binary Tree
ユーザー ikomaikoma
提出日時 2022-05-06 23:39:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 627 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 123,292 KB
最終ジャッジ日時 2024-07-06 03:04:39
合計ジャッジ時間 14,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,128 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 26 ms
10,496 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 25 ms
10,496 KB
testcase_11 AC 26 ms
10,496 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 25 ms
10,624 KB
testcase_15 AC 58 ms
14,208 KB
testcase_16 AC 56 ms
13,312 KB
testcase_17 AC 46 ms
12,544 KB
testcase_18 AC 60 ms
13,952 KB
testcase_19 AC 31 ms
11,008 KB
testcase_20 AC 47 ms
12,672 KB
testcase_21 AC 38 ms
11,520 KB
testcase_22 AC 51 ms
13,056 KB
testcase_23 AC 45 ms
12,416 KB
testcase_24 AC 56 ms
13,824 KB
testcase_25 AC 61 ms
14,464 KB
testcase_26 AC 882 ms
76,160 KB
testcase_27 AC 509 ms
51,584 KB
testcase_28 AC 605 ms
55,552 KB
testcase_29 AC 1,071 ms
85,632 KB
testcase_30 AC 471 ms
48,512 KB
testcase_31 AC 675 ms
61,056 KB
testcase_32 AC 1,061 ms
83,328 KB
testcase_33 AC 567 ms
52,480 KB
testcase_34 AC 706 ms
61,568 KB
testcase_35 AC 826 ms
84,992 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

sys.setrecursionlimit(10 ** 6)


N=int(input())
edge = [[] for _ in range(N)]
XY=[list(map(int,input().split())) for _ in range(N-1)]
for x,y in XY:
    x,y=x-1,y-1
    edge[x].append(y)
    edge[y].append(x)
visit = [0]*N

from heapq import *

def dfs(v=0):
    visit[v]=1
    n_tree = []
    for to in edge[v]:
        if visit[to]:continue
        n,lst = dfs(to)
        heappush(n_tree,-n)
        while lst:
            heappush(n_tree,heappop(lst))
    ret = 1
    for i in range(min(2,len(n_tree))):
        ret += -heappop(n_tree)
    return ret,n_tree

ans,_ = dfs()
print(ans)
0