結果
問題 |
No.1928 Make a Binary Tree
|
ユーザー |
![]() |
提出日時 | 2021-12-15 20:39:44 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,094 bytes |
コンパイル時間 | 215 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 111,744 KB |
最終ジャッジ日時 | 2024-11-06 04:26:22 |
合計ジャッジ時間 | 44,850 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 WA * 35 |
ソースコード
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()