結果

問題 No.912 赤黒木
ユーザー maspymaspy
提出日時 2020-04-22 18:22:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,039 ms / 3,000 ms
コード長 1,414 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 155,400 KB
最終ジャッジ日時 2024-10-11 22:25:45
合計ジャッジ時間 22,558 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,096 KB
testcase_01 AC 38 ms
52,532 KB
testcase_02 AC 62 ms
70,600 KB
testcase_03 AC 67 ms
73,316 KB
testcase_04 AC 55 ms
66,028 KB
testcase_05 AC 63 ms
70,236 KB
testcase_06 AC 62 ms
69,580 KB
testcase_07 AC 67 ms
73,196 KB
testcase_08 AC 47 ms
62,464 KB
testcase_09 AC 60 ms
68,620 KB
testcase_10 AC 50 ms
63,384 KB
testcase_11 AC 59 ms
68,796 KB
testcase_12 AC 969 ms
147,904 KB
testcase_13 AC 1,000 ms
150,276 KB
testcase_14 AC 973 ms
145,884 KB
testcase_15 AC 1,001 ms
150,300 KB
testcase_16 AC 1,008 ms
147,724 KB
testcase_17 AC 1,018 ms
149,336 KB
testcase_18 AC 988 ms
146,344 KB
testcase_19 AC 958 ms
144,284 KB
testcase_20 AC 941 ms
144,016 KB
testcase_21 AC 935 ms
143,960 KB
testcase_22 AC 963 ms
155,264 KB
testcase_23 AC 926 ms
155,400 KB
testcase_24 AC 946 ms
155,224 KB
testcase_25 AC 1,001 ms
148,280 KB
testcase_26 AC 1,039 ms
150,368 KB
testcase_27 AC 999 ms
147,056 KB
testcase_28 AC 988 ms
147,236 KB
testcase_29 AC 993 ms
147,024 KB
testcase_30 AC 1,011 ms
147,292 KB
testcase_31 AC 944 ms
143,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import itertools

N = int(readline())
graph = [[] for _ in range(N + 1)]
for _ in range(N - 1):
    a, b = map(int, readline().split())
    graph[a].append(b)
    graph[b].append(a)

deg = [0] * (N + 1)
for _ in range(N - 1):
    a, b = map(int, readline().split())
    deg[a] += 1
    deg[b] += 1

root = 1
parent = [0] * (N + 1)
order = []
stack = [root]
while stack:
    x = stack.pop()
    order.append(x)
    for y in graph[x]:
        if y == parent[x]:
            continue
        parent[y] = x
        stack.append(y)

INF = 10 ** 9
dp = [[0, INF, INF, INF, INF, INF] for _ in range(N + 1)]

for v in order[::-1]:
    a, b, c, d, e, f = dp[v]
    if deg[v] & 1:
        dp[v] = [
            d, min(a, e), min(b, f),
            a + 1, min(b, d) + 1, min(c, e) + 1
        ]
    else:
        dp[v] = [
            a, min(b, d), min(c, e),
            d + 1, min(a, e) + 1, min(b, f) + 1
        ]
    if v == root:
        break
    p = parent[v]
    A = [INF, INF, INF, INF, INF, INF]
    for a, b in itertools.product(range(6), repeat=2):
        i, k = divmod(a, 3)
        j, l = divmod(b, 3)
        i ^= j
        k += l
        if k > 2:
            continue
        c = 3 * i + k
        A[c] = min(A[c], dp[v][a] + dp[p][b])
    dp[p] = A

x = min(dp[root][:3])
print(N - 1 + x)
0