結果

問題 No.1582 Vertexes vs Edges
ユーザー H3PO4H3PO4
提出日時 2023-07-16 09:37:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 36,992 KB
最終ジャッジ日時 2024-09-17 12:39:18
合計ジャッジ時間 8,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 35 ms
11,520 KB
testcase_05 AC 296 ms
34,432 KB
testcase_06 AC 39 ms
11,648 KB
testcase_07 AC 66 ms
14,208 KB
testcase_08 AC 160 ms
22,528 KB
testcase_09 AC 278 ms
32,768 KB
testcase_10 AC 185 ms
24,832 KB
testcase_11 AC 44 ms
12,288 KB
testcase_12 AC 131 ms
20,096 KB
testcase_13 AC 214 ms
25,472 KB
testcase_14 AC 221 ms
25,600 KB
testcase_15 AC 311 ms
31,104 KB
testcase_16 AC 160 ms
20,608 KB
testcase_17 AC 214 ms
24,960 KB
testcase_18 AC 356 ms
35,968 KB
testcase_19 AC 216 ms
26,368 KB
testcase_20 AC 201 ms
23,936 KB
testcase_21 AC 174 ms
23,168 KB
testcase_22 AC 302 ms
33,024 KB
testcase_23 AC 125 ms
18,560 KB
testcase_24 AC 76 ms
14,464 KB
testcase_25 AC 196 ms
22,144 KB
testcase_26 AC 139 ms
19,584 KB
testcase_27 AC 314 ms
30,720 KB
testcase_28 AC 103 ms
17,024 KB
testcase_29 AC 270 ms
27,520 KB
testcase_30 AC 161 ms
21,376 KB
testcase_31 AC 263 ms
28,032 KB
testcase_32 AC 119 ms
18,176 KB
testcase_33 AC 418 ms
36,864 KB
testcase_34 AC 413 ms
36,992 KB
testcase_35 AC 403 ms
36,992 KB
testcase_36 AC 25 ms
10,880 KB
testcase_37 AC 25 ms
10,752 KB
testcase_38 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

input = sys.stdin.buffer.readline
N = int(input())
T = [[] for _ in range(N)]
for _ in range(N - 1):
    a, b = (int(x) - 1 for x in input().split())
    T[a].append(b)
    T[b].append(a)

d = deque([0])
nonvisited = [True] * N
nonvisited[0] = False
bfs_order = []
while d:
    v = d.popleft()
    for x in T[v]:
        if nonvisited[x]:
            nonvisited[x] = False
            d.append(x)
            bfs_order.append((x, v))

dp_black = [0] * N
dp_white = [1] * N
for v, parent in reversed(bfs_order):
    dp_black[parent] += max(dp_black[v], dp_white[v])
    dp_white[parent] += dp_black[v]
print(N - max(dp_white[0], dp_black[0]))
0