結果

問題 No.904 サメトロ
ユーザー 👑 hahhohahho
提出日時 2021-04-05 09:00:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 742 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 112,288 KB
最終ジャッジ日時 2024-06-09 15:20:54
合計ジャッジ時間 5,095 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 WA -
testcase_02 AC 976 ms
56,908 KB
testcase_03 WA -
testcase_04 AC 983 ms
57,032 KB
testcase_05 AC 986 ms
56,908 KB
testcase_06 AC 970 ms
56,784 KB
testcase_07 WA -
testcase_08 AC 973 ms
56,652 KB
testcase_09 AC 971 ms
56,780 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 989 ms
56,404 KB
testcase_16 WA -
testcase_17 AC 973 ms
56,396 KB
testcase_18 AC 969 ms
56,904 KB
testcase_19 WA -
testcase_20 AC 970 ms
56,520 KB
testcase_21 WA -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 991 ms
56,392 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 974 ms
56,392 KB
testcase_33 AC 981 ms
56,652 KB
testcase_34 AC 979 ms
56,772 KB
testcase_35 AC 980 ms
112,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from scipy.sparse.csgraph import maximum_flow
from scipy.sparse import csr_matrix
from itertools import product

def solve(ab):
    INF = 10**9
    ab = [(INF,INF)]+ab
    n = len(ab)

    g = np.zeros((2*n+2,2*n+2), dtype=int)

    # 0: start, 1: goal, 2-(n+1): left, (n+2)-(2n-1): right

    for i,(a,b) in enumerate(ab):
        g[0,i+2] = a
        g[i+n+2,1] = b
    for i,j in product(range(n), repeat=2):
        if i == j:
            continue
        g[i+2,j+n+2] = INF

    t = maximum_flow(csr_matrix(g), 0, 1).flow_value

    ta = sum(a for a,b in ab[1:])
    tb = sum(b for a,b in ab[1:])

    return t-max(ta,tb)+1


n = int(input())
ab = [tuple(map(int,input().split())) for _ in range(n-1)]
print(solve(ab))
0