結果

問題 No.912 赤黒木
ユーザー たぴちゃんたぴちゃん
提出日時 2019-10-18 14:16:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,267 ms / 3,000 ms
コード長 831 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 426,880 KB
最終ジャッジ日時 2024-06-25 14:20:19
合計ジャッジ時間 29,940 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
103,032 KB
testcase_01 AC 131 ms
102,348 KB
testcase_02 AC 173 ms
104,832 KB
testcase_03 AC 186 ms
105,180 KB
testcase_04 AC 140 ms
102,572 KB
testcase_05 AC 170 ms
104,452 KB
testcase_06 AC 164 ms
104,596 KB
testcase_07 AC 188 ms
105,364 KB
testcase_08 AC 137 ms
102,596 KB
testcase_09 AC 168 ms
104,672 KB
testcase_10 AC 140 ms
102,604 KB
testcase_11 AC 159 ms
103,256 KB
testcase_12 AC 1,113 ms
122,852 KB
testcase_13 AC 1,065 ms
121,728 KB
testcase_14 AC 1,012 ms
121,472 KB
testcase_15 AC 1,154 ms
122,992 KB
testcase_16 AC 1,112 ms
122,188 KB
testcase_17 AC 1,048 ms
121,092 KB
testcase_18 AC 1,114 ms
122,776 KB
testcase_19 AC 1,081 ms
122,004 KB
testcase_20 AC 1,082 ms
121,300 KB
testcase_21 AC 1,071 ms
121,856 KB
testcase_22 AC 829 ms
129,796 KB
testcase_23 AC 846 ms
129,928 KB
testcase_24 AC 826 ms
129,956 KB
testcase_25 AC 996 ms
121,248 KB
testcase_26 AC 996 ms
121,944 KB
testcase_27 AC 971 ms
120,460 KB
testcase_28 AC 2,210 ms
423,424 KB
testcase_29 AC 2,267 ms
426,880 KB
testcase_30 AC 2,209 ms
425,344 KB
testcase_31 AC 2,091 ms
417,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)

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