結果

問題 No.654 Air E869120
ユーザー 👑 rin204rin204
提出日時 2022-11-03 00:30:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 381 ms / 2,000 ms
コード長 2,314 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 86,824 KB
実行使用メモリ 86,928 KB
最終ジャッジ日時 2023-09-24 11:14:00
合計ジャッジ時間 9,962 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
72,280 KB
testcase_01 AC 96 ms
71,404 KB
testcase_02 AC 94 ms
71,552 KB
testcase_03 AC 96 ms
71,704 KB
testcase_04 AC 93 ms
71,616 KB
testcase_05 AC 92 ms
71,676 KB
testcase_06 AC 98 ms
76,524 KB
testcase_07 AC 93 ms
72,508 KB
testcase_08 AC 93 ms
72,280 KB
testcase_09 AC 92 ms
71,404 KB
testcase_10 AC 381 ms
86,168 KB
testcase_11 AC 335 ms
85,584 KB
testcase_12 AC 303 ms
84,020 KB
testcase_13 AC 299 ms
82,564 KB
testcase_14 AC 275 ms
81,580 KB
testcase_15 AC 319 ms
83,376 KB
testcase_16 AC 319 ms
85,884 KB
testcase_17 AC 337 ms
84,580 KB
testcase_18 AC 281 ms
82,588 KB
testcase_19 AC 327 ms
86,928 KB
testcase_20 AC 209 ms
82,496 KB
testcase_21 AC 224 ms
83,192 KB
testcase_22 AC 161 ms
81,684 KB
testcase_23 AC 193 ms
82,296 KB
testcase_24 AC 213 ms
83,112 KB
testcase_25 AC 154 ms
80,980 KB
testcase_26 AC 167 ms
82,076 KB
testcase_27 AC 146 ms
81,096 KB
testcase_28 AC 173 ms
80,652 KB
testcase_29 AC 145 ms
80,680 KB
testcase_30 AC 129 ms
77,744 KB
testcase_31 AC 125 ms
77,412 KB
testcase_32 AC 131 ms
77,560 KB
testcase_33 AC 129 ms
77,312 KB
testcase_34 AC 131 ms
77,788 KB
testcase_35 AC 93 ms
71,612 KB
testcase_36 AC 93 ms
71,548 KB
testcase_37 AC 93 ms
71,556 KB
testcase_38 AC 94 ms
71,720 KB
testcase_39 AC 96 ms
72,380 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