結果

問題 No.1582 Vertexes vs Edges
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-12-16 16:22:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 89,984 KB
最終ジャッジ日時 2024-09-13 13:12:29
合計ジャッジ時間 7,860 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 83 ms
77,312 KB
testcase_05 AC 162 ms
87,936 KB
testcase_06 AC 88 ms
76,908 KB
testcase_07 AC 90 ms
77,868 KB
testcase_08 AC 125 ms
82,260 KB
testcase_09 AC 158 ms
86,912 KB
testcase_10 AC 130 ms
83,328 KB
testcase_11 AC 87 ms
77,056 KB
testcase_12 AC 116 ms
81,152 KB
testcase_13 AC 141 ms
83,840 KB
testcase_14 AC 150 ms
83,968 KB
testcase_15 AC 176 ms
86,784 KB
testcase_16 AC 132 ms
81,792 KB
testcase_17 AC 150 ms
83,684 KB
testcase_18 AC 181 ms
88,784 KB
testcase_19 AC 138 ms
84,096 KB
testcase_20 AC 151 ms
83,328 KB
testcase_21 AC 131 ms
82,168 KB
testcase_22 AC 174 ms
87,400 KB
testcase_23 AC 117 ms
80,256 KB
testcase_24 AC 98 ms
77,440 KB
testcase_25 AC 139 ms
82,432 KB
testcase_26 AC 127 ms
81,280 KB
testcase_27 AC 187 ms
86,272 KB
testcase_28 AC 109 ms
79,360 KB
testcase_29 AC 170 ms
84,736 KB
testcase_30 AC 138 ms
81,960 KB
testcase_31 AC 172 ms
85,248 KB
testcase_32 AC 117 ms
80,128 KB
testcase_33 AC 229 ms
89,856 KB
testcase_34 AC 244 ms
89,984 KB
testcase_35 AC 230 ms
89,740 KB
testcase_36 AC 38 ms
52,224 KB
testcase_37 AC 39 ms
51,712 KB
testcase_38 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)
n = int(input())
G = [[] for _ in range(n)]
for _ in range(n - 1):
    a, b = map(int, input().split())
    a -= 1; b -= 1
    G[a].append(b)
    G[b].append(a)
dp1, dp2 = [0] * n, [1] * n
def dfs(now, prev):
    if now != 0 and len(G[now]) == 1:
        dp1[now] = 0
        dp2[now] = 1
    for next in G[now]:
        if next != prev:
            dfs(next, now)
            dp1[now] += max(dp1[next], dp2[next])
            dp2[now] += dp1[next]
dfs(0, -1)
print(n - max(dp1[0], dp2[0]))
0