結果

問題 No.1928 Make a Binary Tree
ユーザー tnodinotnodino
提出日時 2022-05-08 15:59:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,410 ms / 3,000 ms
コード長 1,142 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-07-08 04:19:18
合計ジャッジ時間 40,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 25 ms
11,008 KB
testcase_04 AC 25 ms
10,880 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 26 ms
11,008 KB
testcase_07 AC 25 ms
11,008 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 26 ms
11,008 KB
testcase_10 AC 27 ms
11,008 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 27 ms
11,008 KB
testcase_13 AC 26 ms
11,008 KB
testcase_14 AC 24 ms
11,008 KB
testcase_15 AC 72 ms
13,056 KB
testcase_16 AC 61 ms
12,544 KB
testcase_17 AC 51 ms
12,160 KB
testcase_18 AC 68 ms
13,056 KB
testcase_19 AC 31 ms
11,008 KB
testcase_20 AC 52 ms
12,160 KB
testcase_21 AC 41 ms
11,520 KB
testcase_22 AC 57 ms
12,544 KB
testcase_23 AC 48 ms
12,032 KB
testcase_24 AC 68 ms
13,056 KB
testcase_25 AC 74 ms
13,312 KB
testcase_26 AC 1,146 ms
53,504 KB
testcase_27 AC 671 ms
37,248 KB
testcase_28 AC 731 ms
39,552 KB
testcase_29 AC 1,344 ms
59,264 KB
testcase_30 AC 614 ms
35,456 KB
testcase_31 AC 868 ms
43,392 KB
testcase_32 AC 1,306 ms
57,856 KB
testcase_33 AC 692 ms
37,888 KB
testcase_34 AC 841 ms
43,904 KB
testcase_35 AC 978 ms
58,624 KB
testcase_36 AC 1,127 ms
83,968 KB
testcase_37 AC 1,071 ms
59,008 KB
testcase_38 AC 26 ms
10,880 KB
testcase_39 AC 1,180 ms
83,072 KB
testcase_40 AC 1,195 ms
83,200 KB
testcase_41 AC 1,188 ms
83,200 KB
testcase_42 AC 1,187 ms
83,072 KB
testcase_43 AC 1,198 ms
83,200 KB
testcase_44 AC 1,233 ms
83,072 KB
testcase_45 AC 1,173 ms
83,072 KB
testcase_46 AC 1,186 ms
83,072 KB
testcase_47 AC 1,200 ms
83,072 KB
testcase_48 AC 1,175 ms
83,072 KB
testcase_49 AC 1,072 ms
107,008 KB
testcase_50 AC 1,240 ms
58,112 KB
testcase_51 AC 1,248 ms
57,984 KB
testcase_52 AC 1,243 ms
57,984 KB
testcase_53 AC 1,232 ms
57,984 KB
testcase_54 AC 1,252 ms
58,112 KB
testcase_55 AC 1,030 ms
85,504 KB
testcase_56 AC 1,410 ms
59,520 KB
testcase_57 AC 1,328 ms
59,392 KB
testcase_58 AC 1,332 ms
59,392 KB
testcase_59 AC 1,128 ms
54,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit
setrecursionlimit(10**6)

from heapq import heappop,heappush

def dfs(pos, pre):
    global G, Vec
    for nxt in G[pos]:
        if nxt == pre:
            continue
        P = dfs(nxt, pos)
        heappush(Vec[pos], -P)
    M = len(Vec[pos])
    idx = pos
    for nxt in G[pos]:
        if nxt == pre:
            continue
        if len(Vec[nxt]) > M:
            M = len(Vec[nxt])
            idx = nxt
    if idx != pos:
        while Vec[pos]:
            heappush(Vec[idx], heappop(Vec[pos]))
    for nxt in G[pos]:
        if nxt == pre:
            continue
        if nxt == idx:
            continue
        while Vec[nxt]:
            heappush(Vec[idx], heappop(Vec[nxt]))
    Vec[pos] = Vec[idx]
    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