結果

問題 No.1928 Make a Binary Tree
ユーザー tnodinotnodino
提出日時 2022-05-07 23:58:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 793 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 89,888 KB
最終ジャッジ日時 2024-07-07 06:03:56
合計ジャッジ時間 17,965 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 30 ms
10,496 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 28 ms
10,496 KB
testcase_15 AC 79 ms
12,672 KB
testcase_16 AC 66 ms
12,160 KB
testcase_17 AC 53 ms
11,776 KB
testcase_18 AC 76 ms
12,800 KB
testcase_19 AC 34 ms
10,880 KB
testcase_20 AC 57 ms
12,032 KB
testcase_21 AC 44 ms
11,392 KB
testcase_22 AC 65 ms
12,160 KB
testcase_23 AC 53 ms
11,648 KB
testcase_24 AC 74 ms
12,800 KB
testcase_25 AC 84 ms
13,184 KB
testcase_26 AC 1,300 ms
53,120 KB
testcase_27 AC 779 ms
37,120 KB
testcase_28 AC 869 ms
39,680 KB
testcase_29 AC 1,545 ms
59,136 KB
testcase_30 AC 714 ms
35,328 KB
testcase_31 AC 982 ms
43,392 KB
testcase_32 AC 1,497 ms
57,600 KB
testcase_33 AC 805 ms
37,888 KB
testcase_34 AC 984 ms
43,776 KB
testcase_35 AC 1,049 ms
58,112 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 #

from sys import setrecursionlimit
setrecursionlimit(10**6)

from heapq import heappop,heappush

def dfs(pos, pre):
    global Vec
    for nxt in G[pos]:
        if nxt == pre:
            continue
        P = dfs(nxt, pos)
        heappush(Vec[pos], -P)
    for nxt in G[pos]:
        if nxt == pre:
            continue
        while Vec[nxt]:
            heappush(Vec[pos], heappop(Vec[nxt]))
    ret = 1
    if len(Vec[pos]) <= 2:
        while Vec[pos]:
            ret += -heappop(Vec[pos])
    else:
        for _ in range(2):
            ret += -heappop(Vec[pos])
    return ret

N = int(input())
G = [[] for _ in range(N)]
for _ in range(N-1):
    x,y = map(int,input().split())
    x -= 1
    y -= 1
    G[x].append(y)
    G[y].append(x)
Vec = [[] for _ in range(N)]
print(dfs(0, -1))
0