結果

問題 No.1928 Make a Binary Tree
ユーザー harurunharurun
提出日時 2021-12-15 21:06:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,508 ms / 3,000 ms
コード長 1,096 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 111,616 KB
最終ジャッジ日時 2024-11-06 04:30:24
合計ジャッジ時間 45,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 33 ms
11,008 KB
testcase_03 AC 32 ms
11,008 KB
testcase_04 AC 33 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 33 ms
10,880 KB
testcase_14 AC 33 ms
11,008 KB
testcase_15 AC 82 ms
13,312 KB
testcase_16 AC 68 ms
12,672 KB
testcase_17 AC 58 ms
12,160 KB
testcase_18 AC 80 ms
13,056 KB
testcase_19 AC 39 ms
11,136 KB
testcase_20 AC 61 ms
12,160 KB
testcase_21 AC 46 ms
11,520 KB
testcase_22 AC 65 ms
12,544 KB
testcase_23 AC 56 ms
12,032 KB
testcase_24 AC 76 ms
13,056 KB
testcase_25 AC 89 ms
13,312 KB
testcase_26 AC 1,285 ms
54,784 KB
testcase_27 AC 765 ms
38,016 KB
testcase_28 AC 842 ms
40,576 KB
testcase_29 AC 1,496 ms
60,800 KB
testcase_30 AC 699 ms
35,968 KB
testcase_31 AC 942 ms
44,416 KB
testcase_32 AC 1,486 ms
59,264 KB
testcase_33 AC 793 ms
38,528 KB
testcase_34 AC 949 ms
44,800 KB
testcase_35 AC 1,065 ms
60,032 KB
testcase_36 AC 1,261 ms
87,040 KB
testcase_37 AC 1,099 ms
60,672 KB
testcase_38 AC 32 ms
10,880 KB
testcase_39 AC 1,369 ms
86,144 KB
testcase_40 AC 1,349 ms
86,144 KB
testcase_41 AC 1,360 ms
86,272 KB
testcase_42 AC 1,347 ms
86,272 KB
testcase_43 AC 1,355 ms
86,144 KB
testcase_44 AC 1,342 ms
86,016 KB
testcase_45 AC 1,352 ms
86,272 KB
testcase_46 AC 1,346 ms
86,144 KB
testcase_47 AC 1,356 ms
86,144 KB
testcase_48 AC 1,351 ms
86,144 KB
testcase_49 AC 1,150 ms
111,616 KB
testcase_50 AC 1,456 ms
59,520 KB
testcase_51 AC 1,450 ms
59,520 KB
testcase_52 AC 1,454 ms
59,520 KB
testcase_53 AC 1,459 ms
59,392 KB
testcase_54 AC 1,465 ms
59,520 KB
testcase_55 AC 1,148 ms
88,704 KB
testcase_56 AC 1,483 ms
60,928 KB
testcase_57 AC 1,492 ms
60,800 KB
testcase_58 AC 1,508 ms
60,928 KB
testcase_59 AC 1,320 ms
56,448 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:
      for j in vec[i]:
        heappush(vec[index],j)
      vec[i].clear()
    for to in Graph[i]:
      if index!=to and to!=parent:
        for j in vec[to]:
          heappush(vec[index],j)
        vec[to].clear()
    vec[i]=vec[index]
    res=1
    if len(vec[i])<=2:
      for j in vec[i]:
        res+=-j
      vec[i].clear()
    else:
      for j in range(2):
        res+=-heappop(vec[i])
    return res
  ans=dfs(0,-1)
  print(ans)
  return

main()
0