結果
問題 | No.654 Air E869120 |
ユーザー | AEn |
提出日時 | 2022-11-03 16:11:45 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,762 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 82,200 KB |
実行使用メモリ | 79,488 KB |
最終ジャッジ日時 | 2024-07-18 01:11:37 |
合計ジャッジ時間 | 5,367 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
55,040 KB |
testcase_01 | WA | - |
testcase_02 | AC | 46 ms
54,272 KB |
testcase_03 | WA | - |
testcase_04 | AC | 47 ms
55,040 KB |
testcase_05 | AC | 47 ms
54,656 KB |
testcase_06 | RE | - |
testcase_07 | AC | 47 ms
55,552 KB |
testcase_08 | WA | - |
testcase_09 | AC | 47 ms
55,296 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 199 ms
78,976 KB |
testcase_17 | AC | 216 ms
79,488 KB |
testcase_18 | AC | 200 ms
78,848 KB |
testcase_19 | AC | 205 ms
79,300 KB |
testcase_20 | AC | 147 ms
79,036 KB |
testcase_21 | AC | 156 ms
79,344 KB |
testcase_22 | AC | 130 ms
78,784 KB |
testcase_23 | AC | 136 ms
78,336 KB |
testcase_24 | AC | 161 ms
78,944 KB |
testcase_25 | AC | 113 ms
78,144 KB |
testcase_26 | AC | 142 ms
79,056 KB |
testcase_27 | AC | 111 ms
78,208 KB |
testcase_28 | AC | 129 ms
78,592 KB |
testcase_29 | AC | 111 ms
78,160 KB |
testcase_30 | AC | 92 ms
77,360 KB |
testcase_31 | AC | 98 ms
77,696 KB |
testcase_32 | AC | 93 ms
77,440 KB |
testcase_33 | AC | 92 ms
77,568 KB |
testcase_34 | AC | 95 ms
77,312 KB |
testcase_35 | AC | 46 ms
54,528 KB |
testcase_36 | AC | 45 ms
54,912 KB |
testcase_37 | AC | 47 ms
54,528 KB |
testcase_38 | WA | - |
testcase_39 | AC | 49 ms
55,296 KB |
ソースコード
from collections import deque import sys sys.setrecursionlimit(10**8) import pypyjit pypyjit.set_param("max_unroll_recursion=-1") class Dinic: def __init__(self, n): """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): """sからtへの残余ネットワーク上での最短距離""" 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 for i in range(self.progress[v], len(self.links[v])): self.progress[v] = i cap, to, rev = self.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 # 残余ネットワークの更新 self.links[v][i][0] -= d self.links[to][rev][0] += d return d return 0 def max_flow(self, s, t): """最大フローを求める""" flow = 0 while True: # tに到達できるか 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()) G = [list() for _ in range(N)] edge = [] for i in range(M): u, v, p, q, w = map(int, input().split()) u-=1;v-=1 G[u].append(p) G[v].append(q+d) edge.append([u, v, p, q, w]) ver = {} for i in range(N): G[i].sort() for i in range(N): for j in range(len(G[i])): ver[(i, G[i][j])] = len(ver) dinic = Dinic(len(ver)) for i in range(N): for j in range(len(G[i])-1): dinic.add_link(ver[(i, G[i][j])], ver[(i, G[i][j+1])], float('inf')) for u, v, p, q, w in edge: dinic.add_link(ver[(u, p)], ver[(v, q+d)], w) if len(G[0])>0 and len(G[-1])>0: print(dinic.max_flow(ver[(0,G[0][0])],ver[(N-1,G[N-1][-1])])) else: print(0)