結果

問題 No.654 Air E869120
ユーザー kamojirokamojiro
提出日時 2020-06-10 22:48:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 2,244 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-23 18:46:39
合計ジャッジ時間 3,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 33 ms
10,880 KB
testcase_04 AC 29 ms
11,008 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 29 ms
11,008 KB
testcase_07 AC 30 ms
11,008 KB
testcase_08 AC 31 ms
11,136 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 129 ms
11,392 KB
testcase_11 AC 100 ms
11,520 KB
testcase_12 AC 108 ms
11,520 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 146 ms
12,288 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 56 ms
12,288 KB
testcase_21 AC 54 ms
12,160 KB
testcase_22 AC 42 ms
12,160 KB
testcase_23 AC 51 ms
12,288 KB
testcase_24 WA -
testcase_25 AC 40 ms
11,904 KB
testcase_26 AC 45 ms
12,032 KB
testcase_27 AC 39 ms
12,032 KB
testcase_28 WA -
testcase_29 AC 38 ms
12,032 KB
testcase_30 AC 37 ms
12,160 KB
testcase_31 AC 37 ms
12,160 KB
testcase_32 AC 37 ms
12,288 KB
testcase_33 AC 37 ms
12,288 KB
testcase_34 AC 35 ms
12,160 KB
testcase_35 AC 29 ms
11,008 KB
testcase_36 AC 30 ms
11,008 KB
testcase_37 AC 30 ms
11,136 KB
testcase_38 AC 27 ms
11,008 KB
testcase_39 AC 28 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import defaultdict
INF = 10**15

def dfs_for_Ford_Fulkerson(N,E,capacity,s,g,flowing):
    stack = [(s,INF)]
    root = [0]*N
    root[s] = -1
    V = [False]*N
    V[s] = True
    while stack:
        u, flow = stack.pop()
        for v in E[u]:
            if not V[v] and capacity[(u,v)] > 0:
                root[v] = u
                V[v] = True
                if v == g:
                    if capacity[(u,v)] < flow:
                        flow = capacity[(u,v)]
                    break
                stack.append((v, min(flow, capacity[(u,v)])))
        else:
            continue
        break
    else:
        return False
    now = g
    while now != s:
        before = root[now]
        capacity[(before, now)] -= flow
        capacity[(now, before)] += flow
        now = before
    flowing[0] += flow
    return True

def Ford_Fulkerson(N,E,capacity, s, g):
    flowing = [0]
    while dfs_for_Ford_Fulkerson(N,E,capacity,s,g, flowing):
        pass
    return flowing[0]

def main():
    N, M, d = map( int, input().split())
    UVPQW = [ tuple( map( int, input().split())) for _ in range(M)]
    E = [set() for _ in range(N)]
    L = 10**9
    E[0].add(0)
    E[N-1].add(L)
    for u, v, p, q, _ in UVPQW:
        u, v = u-1, v-1
        if q+d <= L:
            E[u].add(p)
            E[v].add(q+d)
    F = [sorted(list(E[i])) for i in range(N)]
    index = 0
    VtoI = defaultdict( int)
    for i in range(N):
        for v in F[i]:
            VtoI[(i,v)] = index
            index += 1
    I = index
    G = [[] for _ in range(I)]
    capacity = defaultdict( int)
    for u,v,p,q,w in UVPQW:
        u, v = u-1, v-1
        q += d
        if q > L:
            continue
        a = VtoI[(u,p)]
        b = VtoI[(v,q)]
        G[a].append(b)
        capacity[(a,b)] = +w
        G[b].append(a)
    for i in range(N):
        lg = len(F[i])
        for j in range(lg-1):
            a = VtoI[(i,F[i][j])]
            b = VtoI[(i, F[i][j+1])]
            G[a].append(b)
            capacity[(a,b)] = INF
            G[b].append(a)
    s = VtoI[(0,0)]
    g = VtoI[(N-1,L)]
    print( Ford_Fulkerson(I,G,capacity,s,g))
    
if __name__ == '__main__':
    main()
0