結果

問題 No.2713 Just Solitaire
ユーザー timitimi
提出日時 2024-04-06 19:35:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 1,986 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 78,504 KB
最終ジャッジ日時 2024-10-01 04:00:52
合計ジャッジ時間 3,501 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,996 KB
testcase_01 AC 42 ms
55,060 KB
testcase_02 AC 44 ms
56,068 KB
testcase_03 AC 46 ms
62,216 KB
testcase_04 AC 62 ms
71,528 KB
testcase_05 AC 45 ms
56,652 KB
testcase_06 AC 71 ms
73,864 KB
testcase_07 AC 47 ms
60,584 KB
testcase_08 AC 42 ms
54,856 KB
testcase_09 AC 44 ms
56,644 KB
testcase_10 AC 45 ms
55,672 KB
testcase_11 AC 55 ms
64,476 KB
testcase_12 AC 44 ms
55,304 KB
testcase_13 AC 68 ms
72,252 KB
testcase_14 AC 62 ms
69,708 KB
testcase_15 AC 43 ms
55,328 KB
testcase_16 AC 43 ms
55,568 KB
testcase_17 AC 64 ms
69,756 KB
testcase_18 AC 44 ms
54,932 KB
testcase_19 AC 71 ms
74,624 KB
testcase_20 AC 43 ms
54,612 KB
testcase_21 AC 44 ms
56,316 KB
testcase_22 AC 42 ms
55,436 KB
testcase_23 AC 59 ms
67,916 KB
testcase_24 AC 62 ms
72,560 KB
testcase_25 AC 83 ms
78,052 KB
testcase_26 AC 68 ms
74,784 KB
testcase_27 AC 77 ms
77,904 KB
testcase_28 AC 82 ms
77,908 KB
testcase_29 AC 71 ms
74,844 KB
testcase_30 AC 80 ms
78,248 KB
testcase_31 AC 61 ms
71,824 KB
testcase_32 AC 79 ms
78,504 KB
testcase_33 AC 78 ms
77,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
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'))
 
# 使い方
mf = Dinic(N+M+10)
for i in range(N):
  mf.add_link(0,1+i,A[i])

for i in range(M):
  mf.add_link(N+1+i,N+M+1,B[i])
  AA=list(map(int, input().split()))
  BB=AA[1:]
  for b in BB:
    mf.add_link(b,N+1+i,10**20)
  
ans=mf.max_flow(0,N+M+1)
print(sum(B)-ans)
0