結果

問題 No.1928 Make a Binary Tree
ユーザー harurunharurun
提出日時 2021-12-15 21:29:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 867 ms / 3,000 ms
コード長 1,322 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,920 KB
実行使用メモリ 158,516 KB
最終ジャッジ日時 2024-11-06 04:31:38
合計ジャッジ時間 25,518 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,892 KB
testcase_01 AC 46 ms
56,248 KB
testcase_02 AC 45 ms
55,484 KB
testcase_03 AC 45 ms
54,508 KB
testcase_04 AC 46 ms
54,848 KB
testcase_05 AC 45 ms
55,436 KB
testcase_06 AC 45 ms
54,936 KB
testcase_07 AC 46 ms
54,764 KB
testcase_08 AC 46 ms
55,312 KB
testcase_09 AC 46 ms
55,892 KB
testcase_10 AC 46 ms
55,548 KB
testcase_11 AC 44 ms
55,252 KB
testcase_12 AC 45 ms
56,268 KB
testcase_13 AC 46 ms
56,168 KB
testcase_14 AC 45 ms
55,252 KB
testcase_15 AC 195 ms
80,396 KB
testcase_16 AC 193 ms
80,028 KB
testcase_17 AC 167 ms
79,588 KB
testcase_18 AC 212 ms
80,760 KB
testcase_19 AC 101 ms
77,180 KB
testcase_20 AC 174 ms
79,912 KB
testcase_21 AC 135 ms
78,572 KB
testcase_22 AC 184 ms
80,000 KB
testcase_23 AC 156 ms
79,416 KB
testcase_24 AC 203 ms
79,940 KB
testcase_25 AC 201 ms
80,988 KB
testcase_26 AC 742 ms
110,128 KB
testcase_27 AC 526 ms
97,864 KB
testcase_28 AC 523 ms
99,256 KB
testcase_29 AC 790 ms
114,496 KB
testcase_30 AC 464 ms
95,664 KB
testcase_31 AC 558 ms
102,292 KB
testcase_32 AC 789 ms
113,100 KB
testcase_33 AC 539 ms
98,116 KB
testcase_34 AC 576 ms
102,544 KB
testcase_35 AC 292 ms
109,084 KB
testcase_36 AC 419 ms
135,448 KB
testcase_37 AC 431 ms
114,848 KB
testcase_38 AC 44 ms
54,312 KB
testcase_39 AC 645 ms
120,648 KB
testcase_40 AC 650 ms
120,932 KB
testcase_41 AC 628 ms
121,180 KB
testcase_42 AC 628 ms
120,264 KB
testcase_43 AC 652 ms
120,768 KB
testcase_44 AC 635 ms
120,608 KB
testcase_45 AC 646 ms
120,728 KB
testcase_46 AC 618 ms
120,628 KB
testcase_47 AC 645 ms
120,712 KB
testcase_48 AC 639 ms
120,836 KB
testcase_49 AC 323 ms
126,148 KB
testcase_50 AC 638 ms
109,152 KB
testcase_51 AC 648 ms
109,528 KB
testcase_52 AC 660 ms
109,844 KB
testcase_53 AC 655 ms
109,584 KB
testcase_54 AC 649 ms
109,560 KB
testcase_55 AC 359 ms
135,060 KB
testcase_56 AC 857 ms
114,600 KB
testcase_57 AC 858 ms
114,060 KB
testcase_58 AC 867 ms
114,920 KB
testcase_59 AC 563 ms
158,516 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