結果

問題 No.2320 Game World for PvP
ユーザー cleanttedcleantted
提出日時 2023-02-26 04:41:18
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,419 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 93,696 KB
最終ジャッジ日時 2024-04-19 12:36:49
合計ジャッジ時間 8,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
from math import gcd, log10, pi, sqrt, ceil
from bisect import bisect, bisect_left, bisect_right, insort
from typing import Iterable, TypeVar, Union, Tuple, Iterator, List
import copy
import heapq
import itertools
import math
import random
from fractions import Fraction
from functools import lru_cache, partial, cmp_to_key
import operator
input = sys.stdin.readline
sys.setrecursionlimit(10000000)
mod = 998244353
INF = 1 << 61
DIFF = 10 ** -9
DX = [1, 0, -1, 0, 1, 1, -1, -1]
DY = [0, 1, 0, -1, 1, -1, 1, -1]

def read_values(): return map(int, input().split())
def read_index(): return map(lambda x: int(x) - 1, input().split())
def read_list(): return list(read_values())
def read_lists(N): return [read_list() for _ in range(N)]


class Flow:
    def __init__(self, V):
        self.V = V
        self.G = [dict() for _ in range(V)]

    def add_edge(self, u, v, cap):
        self.G[u][v] = self.G[u].get(v, 0) + cap 
        if u not in self.G[v]:
            self.G[v][u] = 0

    def add_multi_edge(self, u, v, cap1, cap2):
        self.G[u][v] = self.G[u].get(v, 0) + cap1
        self.G[v][u] = self.G[v].get(u, 0) + cap2

    def wfs(self, s, g):
        S = [(s, -1, INF)]
        P = [-1] * self.V
        while S:
            u, p, f = S.pop()
            if u == g:
                break
            
            for v, c in self.G[u].items():
                if c <= 0:
                    continue
    
                if P[v] != -1:
                    continue
    
                t = min(f, c)
                P[v] = u
                S.append((v, u, t))
        else:
            return 0

        while u != s:
            p = P[u]
            self.G[p][u] -= f
            self.G[u][p] += f
            u = p
    
        return f

    def flow(self, s, g):
        res = 0
        r = self.wfs(s, g)
        while r > 0:
            res += r
            r = self.wfs(s, g)
        return res


def main():
    N, S, T = read_values()
    A = list(read_index())
    B = list(read_index())

    C = read_lists(N)

    flow = Flow(N + 2)
    for i in A:
        flow.add_edge(0, i + 1, INF)
    for i in B:
        flow.add_edge(i + 1, N + 1, INF)

    for i in range(N):
        for j in range(i + 1, N):
            flow.add_multi_edge(i + 1, j + 1, C[i][j], C[i][j])
    
    print(flow.flow(0, N + 1))


if __name__ == "__main__":
    main()
0