結果

問題 No.654 Air E869120
ユーザー asumo0729asumo0729
提出日時 2022-07-11 21:56:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,929 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 85,660 KB
最終ジャッジ日時 2024-06-22 16:33:39
合計ジャッジ時間 5,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
68,172 KB
testcase_01 WA -
testcase_02 AC 45 ms
61,444 KB
testcase_03 AC 44 ms
62,300 KB
testcase_04 WA -
testcase_05 AC 45 ms
62,056 KB
testcase_06 AC 45 ms
62,264 KB
testcase_07 WA -
testcase_08 AC 48 ms
62,180 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
from heapq import heapify, heappop, _heapify_max, heappush
from bisect import bisect_left, bisect_right
import math
import itertools
import copy

stdin=sys.stdin
#sys.setrecursionlimit(10 ** 7)
## import pypyjit
## pypyjit.set_param('max_unroll_recursion=-1')

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
inf = float('inf')
mod = 10 ** 9 + 7
mod = 998244353
eps = 1e-9
sortkey1 = itemgetter(0)
sortkey2 = lambda x: (x[0], x[1])



###############################################################

N, M, d = lp()
adj = [defaultdict(list) for _ in range(N)]
for _ in range(M):
    u, v, p, q, w = lp()
    u -= 1; v -= 1
    l = len(adj[u][v])
    adj[u][v].append([w, p, q, l])
    adj[v][u].append([0, 0, 0, 0])

ans = 0
while True:
    visit = [0 for _ in range(N)]
    deq = deque([(0, 0)])
    before = [[-1, -1] for _ in range(N)]
    while deq:
        now, ti = deq.pop()
        visit[now] = 1
        if now == N - 1:
            break
        for nex in adj[now].keys():
            for [w, p, q, idx] in adj[now][nex]:
                if visit[nex] or w == 0 or (p != 0 and ti + d > p):
                    continue
                deq.append((nex, q))
                before[nex][0] = now
                before[nex][1] = idx

    if now != N - 1:
        break
    y = N - 1
    min_flow = inf
    while before[y][0] != - 1:
        now = before[y][0]
        idx = before[y][1]
        min_flow = min(min_flow, adj[now][y][idx][0])
        y = now
    y = N - 1
    while before[y][0] != -1:
        now = before[y][0]
        idx = before[y][1]
        adj[now][y][idx][0] -= min_flow
        adj[y][now][idx][0] += min_flow
        y = now
    ans += min_flow

print(ans)
0