結果

問題 No.912 赤黒木
ユーザー たぴちゃんたぴちゃん
提出日時 2019-10-18 14:18:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,270 ms / 3,000 ms
コード長 831 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 427,084 KB
最終ジャッジ日時 2024-06-25 14:20:55
合計ジャッジ時間 27,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
102,592 KB
testcase_01 AC 123 ms
102,616 KB
testcase_02 AC 164 ms
104,612 KB
testcase_03 AC 177 ms
104,968 KB
testcase_04 AC 132 ms
103,152 KB
testcase_05 AC 160 ms
104,704 KB
testcase_06 AC 157 ms
104,448 KB
testcase_07 AC 174 ms
105,088 KB
testcase_08 AC 128 ms
102,476 KB
testcase_09 AC 163 ms
104,736 KB
testcase_10 AC 135 ms
102,912 KB
testcase_11 AC 155 ms
103,000 KB
testcase_12 AC 1,017 ms
122,496 KB
testcase_13 AC 998 ms
121,676 KB
testcase_14 AC 937 ms
121,424 KB
testcase_15 AC 1,064 ms
123,008 KB
testcase_16 AC 1,004 ms
122,044 KB
testcase_17 AC 951 ms
121,224 KB
testcase_18 AC 992 ms
122,624 KB
testcase_19 AC 978 ms
122,080 KB
testcase_20 AC 971 ms
121,472 KB
testcase_21 AC 972 ms
121,888 KB
testcase_22 AC 744 ms
130,036 KB
testcase_23 AC 740 ms
130,056 KB
testcase_24 AC 758 ms
129,980 KB
testcase_25 AC 920 ms
121,448 KB
testcase_26 AC 893 ms
121,728 KB
testcase_27 AC 864 ms
120,320 KB
testcase_28 AC 2,113 ms
423,680 KB
testcase_29 AC 2,270 ms
427,084 KB
testcase_30 AC 2,056 ms
425,320 KB
testcase_31 AC 1,931 ms
417,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)

INF = 1000000000
G = [[] for i in range(200000)]
deg = [0] * 200000
dp = [[0 for j in range(3)] for i in range(200000)]

def calc(v, p):
    for to in G[v]:
        if to == p:
            continue
        calc(to, v)
        deg[v] += deg[to]
        nxt = [INF] * 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]
    return

N = int(input())
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

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