結果

問題 No.912 赤黒木
ユーザー たぴちゃんたぴちゃん
提出日時 2019-10-18 16:07:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 907 ms / 3,000 ms
コード長 979 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 161,248 KB
最終ジャッジ日時 2024-06-25 14:26:45
合計ジャッジ時間 20,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 93 ms
76,544 KB
testcase_03 AC 110 ms
76,800 KB
testcase_04 AC 52 ms
63,232 KB
testcase_05 AC 92 ms
76,548 KB
testcase_06 AC 89 ms
76,496 KB
testcase_07 AC 109 ms
76,800 KB
testcase_08 AC 42 ms
53,376 KB
testcase_09 AC 86 ms
76,544 KB
testcase_10 AC 51 ms
62,336 KB
testcase_11 AC 75 ms
72,832 KB
testcase_12 AC 871 ms
133,712 KB
testcase_13 AC 907 ms
134,948 KB
testcase_14 AC 850 ms
130,240 KB
testcase_15 AC 901 ms
130,768 KB
testcase_16 AC 856 ms
133,532 KB
testcase_17 AC 876 ms
134,596 KB
testcase_18 AC 886 ms
132,320 KB
testcase_19 AC 846 ms
129,976 KB
testcase_20 AC 825 ms
130,156 KB
testcase_21 AC 812 ms
128,744 KB
testcase_22 AC 742 ms
161,248 KB
testcase_23 AC 760 ms
160,308 KB
testcase_24 AC 763 ms
160,412 KB
testcase_25 AC 849 ms
134,004 KB
testcase_26 AC 895 ms
133,216 KB
testcase_27 AC 864 ms
133,564 KB
testcase_28 AC 887 ms
133,092 KB
testcase_29 AC 882 ms
132,856 KB
testcase_30 AC 886 ms
133,072 KB
testcase_31 AC 812 ms
128,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for i in range(N)]
deg = [0] * N
parent = [-1] * N
dp = [[0 for j in range(3)] for i in range(N)]

for i in range(N - 1):
    A, B = [int(i) for i in input().split()]
    G[A - 1].append(B - 1)
    G[B - 1].append(A - 1)

for i in range(N - 1):
    C, D = [int(i) for i in input().split()]
    deg[C - 1] += 1
    deg[D - 1] += 1

stack = [0]
stack2 = []
parent[0] = 0

while stack:
    v = stack.pop()
    stack2.append(v)
    for to in G[v]:
        if parent[to] != -1:
            continue
        parent[to] = v
        stack.append(to)

while stack2:
    v = stack2.pop()
    for to in G[v]:
        if to == parent[v]:
            continue
        deg[v] += deg[to]
        nxt = [1000000000] * 3
        for i in range(3):
            for j in range(3 - i):
                nxt[i + j] = min(nxt[i + j], dp[v][i] + dp[to][j] + (deg[to] % 2 != j % 2))
        for i in range(3):
            dp[v][i] = nxt[i]

print(min(dp[0][0], dp[0][2]) + N - 1)
0