結果

問題 No.1928 Make a Binary Tree
ユーザー harurunharurun
提出日時 2021-12-15 20:59:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,182 ms / 3,000 ms
コード長 1,064 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 415,552 KB
最終ジャッジ日時 2024-11-06 04:27:49
合計ジャッジ時間 34,013 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,752 KB
testcase_01 AC 45 ms
55,304 KB
testcase_02 AC 46 ms
54,728 KB
testcase_03 AC 44 ms
54,320 KB
testcase_04 AC 45 ms
55,416 KB
testcase_05 AC 44 ms
55,568 KB
testcase_06 AC 46 ms
55,116 KB
testcase_07 AC 46 ms
55,636 KB
testcase_08 AC 47 ms
56,808 KB
testcase_09 AC 49 ms
55,632 KB
testcase_10 AC 46 ms
55,468 KB
testcase_11 AC 45 ms
54,504 KB
testcase_12 AC 44 ms
56,284 KB
testcase_13 AC 45 ms
55,832 KB
testcase_14 AC 45 ms
56,068 KB
testcase_15 AC 215 ms
80,708 KB
testcase_16 AC 198 ms
80,064 KB
testcase_17 AC 181 ms
79,412 KB
testcase_18 AC 205 ms
80,068 KB
testcase_19 AC 99 ms
77,492 KB
testcase_20 AC 184 ms
79,200 KB
testcase_21 AC 144 ms
78,356 KB
testcase_22 AC 195 ms
79,508 KB
testcase_23 AC 170 ms
79,572 KB
testcase_24 AC 209 ms
80,424 KB
testcase_25 AC 223 ms
80,396 KB
testcase_26 AC 811 ms
115,228 KB
testcase_27 AC 571 ms
100,956 KB
testcase_28 AC 618 ms
103,108 KB
testcase_29 AC 921 ms
120,500 KB
testcase_30 AC 553 ms
99,292 KB
testcase_31 AC 680 ms
106,292 KB
testcase_32 AC 930 ms
119,120 KB
testcase_33 AC 607 ms
101,572 KB
testcase_34 AC 715 ms
106,996 KB
testcase_35 AC 351 ms
130,900 KB
testcase_36 AC 834 ms
276,504 KB
testcase_37 AC 528 ms
117,508 KB
testcase_38 AC 44 ms
55,644 KB
testcase_39 AC 1,119 ms
273,256 KB
testcase_40 AC 1,123 ms
275,228 KB
testcase_41 AC 1,136 ms
268,248 KB
testcase_42 AC 1,121 ms
274,756 KB
testcase_43 AC 1,116 ms
270,268 KB
testcase_44 AC 1,182 ms
272,692 KB
testcase_45 AC 1,146 ms
275,652 KB
testcase_46 AC 1,160 ms
273,468 KB
testcase_47 AC 1,145 ms
276,308 KB
testcase_48 AC 1,145 ms
276,872 KB
testcase_49 AC 940 ms
415,552 KB
testcase_50 AC 736 ms
115,500 KB
testcase_51 AC 729 ms
115,284 KB
testcase_52 AC 747 ms
114,908 KB
testcase_53 AC 776 ms
115,160 KB
testcase_54 AC 732 ms
114,872 KB
testcase_55 AC 853 ms
270,068 KB
testcase_56 AC 1,022 ms
121,344 KB
testcase_57 AC 1,001 ms
121,488 KB
testcase_58 AC 1,001 ms
120,860 KB
testcase_59 AC 496 ms
124,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from heapq import *
from sys import setrecursionlimit
setrecursionlimit(400010)

def main():
  N=int(input())
  Graph=[[]for i in range(N)]
  for i in range(N-1):
    x,y=map(int,input().split())
    Graph[x-1].append(y-1)
    Graph[y-1].append(x-1)
  checked=[False]*N
  vec=[[]for i in range(N)]
  def dfs(i,parent):
    checked[i]=True
    for to in Graph[i]:
      if not checked[to]:
        p=dfs(to,i)
        heappush(vec[i],-p)
    max_size=len(vec[i])
    index=i
    for to in Graph[i]:
      if to!=parent and len(vec[to])>max_size:
        index=to
        max_size=len(vec[to])
    if index!=i:
      while vec[i]:
        heappush(vec[index],heappop(vec[i]))
    for to in Graph[i]:
      if index!=to and to!=parent:
        while vec[to]:
          heappush(vec[index],heappop(vec[to]))
    vec[i]=vec[index]
    res=1
    if len(vec[i])<=2:
      while vec[i]:
        res+=-heappop(vec[i])
    else:
      for j in range(2):
        res+=-heappop(vec[i])
    return res
  ans=dfs(0,-1)
  print(ans)
  return

main()
0