結果

問題 No.1928 Make a Binary Tree
ユーザー ikomaikoma
提出日時 2022-05-06 23:49:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 763 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 356,480 KB
最終ジャッジ日時 2024-07-06 03:23:17
合計ジャッジ時間 13,435 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,600 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 WA -
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 40 ms
52,608 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 41 ms
52,608 KB
testcase_08 AC 40 ms
53,120 KB
testcase_09 AC 40 ms
52,864 KB
testcase_10 AC 44 ms
52,352 KB
testcase_11 WA -
testcase_12 AC 39 ms
52,608 KB
testcase_13 AC 43 ms
52,480 KB
testcase_14 AC 40 ms
52,736 KB
testcase_15 AC 184 ms
79,360 KB
testcase_16 AC 175 ms
80,000 KB
testcase_17 AC 164 ms
78,848 KB
testcase_18 AC 187 ms
79,616 KB
testcase_19 AC 87 ms
76,416 KB
testcase_20 AC 150 ms
79,104 KB
testcase_21 AC 126 ms
78,080 KB
testcase_22 AC 166 ms
78,720 KB
testcase_23 AC 153 ms
78,464 KB
testcase_24 AC 185 ms
79,616 KB
testcase_25 AC 190 ms
79,488 KB
testcase_26 AC 580 ms
119,296 KB
testcase_27 AC 421 ms
103,552 KB
testcase_28 AC 426 ms
106,880 KB
testcase_29 AC 650 ms
125,568 KB
testcase_30 AC 408 ms
101,376 KB
testcase_31 AC 470 ms
109,568 KB
testcase_32 AC 618 ms
124,160 KB
testcase_33 AC 444 ms
104,448 KB
testcase_34 AC 471 ms
109,696 KB
testcase_35 AC 273 ms
126,720 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,na=0):
    visit[v]=1
    n_tree = []
    if len(edge[v])<2:na+=1
    for to in edge[v]:
        if visit[to]:continue
        n,lst = dfs(to,na)
        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)
    ret_tree = []
    while na and n_tree:
        heappush(ret_tree,heappop(n_tree))
        na-=1
    return ret,n_tree

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