結果
問題 | No.1928 Make a Binary Tree |
ユーザー | ikoma |
提出日時 | 2022-05-06 23:38:42 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 736 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 82,084 KB |
実行使用メモリ | 356,880 KB |
最終ジャッジ日時 | 2024-07-06 02:59:53 |
合計ジャッジ時間 | 12,213 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
62,252 KB |
testcase_01 | AC | 34 ms
53,328 KB |
testcase_02 | AC | 33 ms
53,352 KB |
testcase_03 | AC | 33 ms
54,324 KB |
testcase_04 | AC | 34 ms
54,380 KB |
testcase_05 | AC | 33 ms
53,964 KB |
testcase_06 | AC | 34 ms
53,640 KB |
testcase_07 | AC | 36 ms
53,332 KB |
testcase_08 | AC | 34 ms
54,364 KB |
testcase_09 | AC | 34 ms
53,480 KB |
testcase_10 | AC | 34 ms
53,904 KB |
testcase_11 | AC | 34 ms
52,996 KB |
testcase_12 | AC | 35 ms
53,440 KB |
testcase_13 | AC | 35 ms
52,948 KB |
testcase_14 | AC | 35 ms
54,132 KB |
testcase_15 | AC | 105 ms
79,712 KB |
testcase_16 | AC | 102 ms
78,900 KB |
testcase_17 | AC | 97 ms
78,408 KB |
testcase_18 | AC | 107 ms
79,644 KB |
testcase_19 | AC | 63 ms
74,232 KB |
testcase_20 | AC | 97 ms
78,024 KB |
testcase_21 | AC | 88 ms
77,592 KB |
testcase_22 | AC | 103 ms
79,112 KB |
testcase_23 | AC | 103 ms
77,928 KB |
testcase_24 | AC | 116 ms
79,644 KB |
testcase_25 | AC | 109 ms
79,580 KB |
testcase_26 | AC | 536 ms
119,944 KB |
testcase_27 | AC | 363 ms
103,340 KB |
testcase_28 | AC | 400 ms
107,344 KB |
testcase_29 | AC | 623 ms
126,460 KB |
testcase_30 | AC | 330 ms
101,748 KB |
testcase_31 | AC | 438 ms
110,884 KB |
testcase_32 | AC | 610 ms
126,212 KB |
testcase_33 | AC | 380 ms
104,572 KB |
testcase_34 | AC | 450 ms
110,468 KB |
testcase_35 | AC | 284 ms
141,876 KB |
testcase_36 | TLE | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
ソースコード
import sys input = sys.stdin.readline sys.setrecursionlimit(10 ** 6) if "pypyjit" in sys.builtin_module_names: import pypyjit pypyjit.set_param("max_unroll_recursion=-1") N=int(input()) edge = [[] for _ in range(N)] XY=[list(map(int,input().split())) for _ in range(N-1)] for x,y in XY: x,y=x-1,y-1 edge[x].append(y) edge[y].append(x) visit = [0]*N from heapq import * def dfs(v=0): visit[v]=1 n_tree = [] for to in edge[v]: if visit[to]:continue n,lst = dfs(to) heappush(n_tree,-n) while lst: heappush(n_tree,heappop(lst)) ret = 1 for i in range(min(2,len(n_tree))): ret += -heappop(n_tree) return ret,n_tree ans,_ = dfs() print(ans)