結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,008 KB
testcase_01 AC 33 ms
11,008 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 31 ms
11,136 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 31 ms
11,136 KB
testcase_07 AC 32 ms
11,136 KB
testcase_08 AC 33 ms
11,008 KB
testcase_09 AC 31 ms
11,008 KB
testcase_10 AC 32 ms
11,008 KB
testcase_11 AC 33 ms
11,008 KB
testcase_12 AC 32 ms
11,008 KB
testcase_13 AC 32 ms
11,008 KB
testcase_14 AC 32 ms
11,008 KB
testcase_15 AC 84 ms
13,312 KB
testcase_16 AC 71 ms
12,672 KB
testcase_17 AC 60 ms
12,160 KB
testcase_18 AC 82 ms
13,312 KB
testcase_19 AC 38 ms
11,264 KB
testcase_20 AC 61 ms
12,288 KB
testcase_21 AC 47 ms
11,776 KB
testcase_22 AC 68 ms
12,544 KB
testcase_23 AC 59 ms
12,288 KB
testcase_24 AC 83 ms
13,312 KB
testcase_25 AC 90 ms
13,440 KB
testcase_26 AC 1,305 ms
55,936 KB
testcase_27 AC 775 ms
39,296 KB
testcase_28 AC 851 ms
41,856 KB
testcase_29 AC 1,528 ms
62,464 KB
testcase_30 AC 720 ms
36,864 KB
testcase_31 AC 967 ms
45,696 KB
testcase_32 AC 1,486 ms
60,928 KB
testcase_33 AC 812 ms
39,680 KB
testcase_34 AC 993 ms
45,824 KB
testcase_35 AC 1,076 ms
66,944 KB
testcase_36 AC 1,346 ms
94,080 KB
testcase_37 AC 1,121 ms
62,076 KB
testcase_38 AC 32 ms
11,136 KB
testcase_39 AC 1,392 ms
73,472 KB
testcase_40 AC 1,359 ms
73,600 KB
testcase_41 AC 1,384 ms
73,600 KB
testcase_42 AC 1,367 ms
73,600 KB
testcase_43 AC 1,372 ms
73,728 KB
testcase_44 AC 1,385 ms
73,472 KB
testcase_45 AC 1,386 ms
73,728 KB
testcase_46 AC 1,368 ms
73,600 KB
testcase_47 AC 1,406 ms
73,728 KB
testcase_48 AC 1,374 ms
73,600 KB
testcase_49 AC 1,201 ms
84,608 KB
testcase_50 AC 1,483 ms
61,184 KB
testcase_51 AC 1,496 ms
61,184 KB
testcase_52 AC 1,465 ms
61,184 KB
testcase_53 AC 1,461 ms
61,184 KB
testcase_54 AC 1,496 ms
61,184 KB
testcase_55 AC 1,231 ms
93,184 KB
testcase_56 AC 1,536 ms
62,464 KB
testcase_57 AC 1,535 ms
62,464 KB
testcase_58 AC 1,525 ms
62,208 KB
testcase_59 AC 1,646 ms
97,152 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)]
  dq=deque()
  dq.append([0+N,-1])
  dq.append([0,-1])
  cnt=[1]*N
  while dq:
    i,parent=dq.pop()
    if i<N:
      checked[i]=True
      for to in Graph[i]:
        if not checked[to]:
          dq.append([to+N,i])
          dq.append([to,i])
    else:
      i-=N
      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]
      if len(vec[i])<=2:
        for j in vec[i]:
          cnt[i]+=-j
        vec[i].clear()
      else:
        for j in range(2):
          cnt[i]+=-heappop(vec[i])
      assert(cnt[i]>=1)
      if parent!=-1:
        heappush(vec[parent],-cnt[i])
  print(cnt[0])
  return

main()
0