結果

問題 No.654 Air E869120
ユーザー kamojirokamojiro
提出日時 2020-06-10 20:05:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 2,238 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 11,100 KB
実行使用メモリ 10,176 KB
最終ジャッジ日時 2023-09-05 19:16:38
合計ジャッジ時間 3,164 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
8,828 KB
testcase_01 AC 20 ms
8,760 KB
testcase_02 AC 21 ms
8,820 KB
testcase_03 AC 21 ms
8,752 KB
testcase_04 AC 20 ms
8,756 KB
testcase_05 AC 21 ms
8,692 KB
testcase_06 AC 21 ms
8,736 KB
testcase_07 AC 21 ms
8,760 KB
testcase_08 AC 20 ms
8,772 KB
testcase_09 AC 20 ms
8,880 KB
testcase_10 AC 103 ms
9,244 KB
testcase_11 AC 80 ms
9,252 KB
testcase_12 AC 85 ms
9,212 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 27 ms
9,944 KB
testcase_30 AC 27 ms
9,944 KB
testcase_31 AC 27 ms
10,172 KB
testcase_32 AC 26 ms
10,176 KB
testcase_33 AC 27 ms
10,148 KB
testcase_34 AC 27 ms
9,928 KB
testcase_35 AC 19 ms
8,768 KB
testcase_36 AC 20 ms
8,772 KB
testcase_37 AC 19 ms
8,824 KB
testcase_38 AC 20 ms
8,692 KB
testcase_39 AC 21 ms
8,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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
        E[u].add(p)
        if q+d <= L:
            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)] = L
            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