結果

問題 No.654 Air E869120
ユーザー 👑 rin204rin204
提出日時 2022-11-03 00:30:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 2,314 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 81,064 KB
最終ジャッジ日時 2024-07-17 12:06:44
合計ジャッジ時間 6,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,784 KB
testcase_01 AC 43 ms
54,400 KB
testcase_02 AC 42 ms
54,656 KB
testcase_03 AC 47 ms
54,144 KB
testcase_04 AC 43 ms
54,528 KB
testcase_05 AC 43 ms
54,784 KB
testcase_06 AC 47 ms
60,672 KB
testcase_07 AC 43 ms
54,784 KB
testcase_08 AC 43 ms
54,656 KB
testcase_09 AC 44 ms
55,040 KB
testcase_10 AC 324 ms
80,412 KB
testcase_11 AC 284 ms
81,064 KB
testcase_12 AC 246 ms
79,264 KB
testcase_13 AC 243 ms
80,344 KB
testcase_14 AC 224 ms
79,164 KB
testcase_15 AC 260 ms
79,876 KB
testcase_16 AC 252 ms
80,096 KB
testcase_17 AC 275 ms
80,416 KB
testcase_18 AC 227 ms
79,756 KB
testcase_19 AC 266 ms
81,008 KB
testcase_20 AC 159 ms
79,080 KB
testcase_21 AC 172 ms
79,876 KB
testcase_22 AC 107 ms
78,160 KB
testcase_23 AC 142 ms
78,460 KB
testcase_24 AC 159 ms
78,628 KB
testcase_25 AC 104 ms
77,976 KB
testcase_26 AC 116 ms
78,304 KB
testcase_27 AC 97 ms
77,844 KB
testcase_28 AC 122 ms
78,400 KB
testcase_29 AC 95 ms
77,900 KB
testcase_30 AC 78 ms
74,300 KB
testcase_31 AC 74 ms
73,032 KB
testcase_32 AC 76 ms
73,536 KB
testcase_33 AC 79 ms
74,648 KB
testcase_34 AC 86 ms
77,780 KB
testcase_35 AC 42 ms
54,704 KB
testcase_36 AC 42 ms
54,764 KB
testcase_37 AC 44 ms
55,496 KB
testcase_38 AC 41 ms
54,172 KB
testcase_39 AC 43 ms
56,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

class Dinic:
    def __init__(self, n):
        self.n = n
        self.links = [[] for _ in range(n)]
        self.depth = None
        self.progress = None
 
    def add_link(self, _from, to, cap):
        self.links[_from].append([cap, to, len(self.links[to])])
        self.links[to].append([0, _from, len(self.links[_from]) - 1])
 
    def bfs(self, s):
        depth = [-1] * self.n
        depth[s] = 0
        q = deque([s])
        while q:
            v = q.popleft()
            for cap, to, rev in self.links[v]:
                if cap > 0 and depth[to] < 0:
                    depth[to] = depth[v] + 1
                    q.append(to)
        self.depth = depth
 
    def dfs(self, v, t, flow):
        if v == t:
            return flow
        links_v = self.links[v]
        for i in range(self.progress[v], len(links_v)):
            self.progress[v] = i
            cap, to, rev = link = links_v[i]
            if cap == 0 or self.depth[v] >= self.depth[to]:
                continue
            d = self.dfs(to, t, min(flow, cap))
            if d == 0:
                continue
            link[0] -= d
            self.links[to][rev][0] += d
            return d
        return 0
 
    def max_flow(self, s, t):
        flow = 0
        while True:
            self.bfs(s)
            if self.depth[t] < 0:
                return flow
            self.progress = [0] * self.n
            current_flow = self.dfs(s, t, float('inf'))
            while current_flow > 0:
                flow += current_flow
                current_flow = self.dfs(s, t, float('inf'))


n, m, d = map(int, input().split())
Q = [[] for _ in range(n)]
Q[0].append(-1)
Q[-1].append(1 << 60)
E = []
for _ in range(m):
    u, v, p, q, w = map(int, input().split())
    q += d
    u -= 1
    v -= 1
    E.append((u, v, p, q, w))
    Q[u].append(p)
    Q[v].append(q)

dic = {}
ind = 0
for i in range(n):
    Q[i].sort()
    for j in Q[i]:
        dic[(i, j)] = ind
        ind += 1

G = Dinic(ind)
for u, v, p, q, w in E:
    G.add_link(dic[(u, p)], dic[(v, q)], w)

for i in range(n):
    if len(Q[i]) == 0:
        continue
    b = dic[(i, Q[i][0])]
    for j in Q[i][1:]:
        c = dic[(i, j)]
        G.add_link(b, c, 1 << 60)
        b = c

ans = G.max_flow(0, ind - 1)
print(ans)
0