結果

問題 No.2263 Perms
ユーザー 👑 rin204rin204
提出日時 2024-04-27 15:40:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 4,353 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 85,260 KB
最終ジャッジ日時 2024-04-27 15:40:23
合計ジャッジ時間 8,077 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
79,440 KB
testcase_01 AC 86 ms
79,500 KB
testcase_02 AC 78 ms
79,496 KB
testcase_03 AC 83 ms
79,336 KB
testcase_04 AC 86 ms
79,368 KB
testcase_05 AC 111 ms
80,144 KB
testcase_06 AC 222 ms
84,412 KB
testcase_07 AC 209 ms
83,476 KB
testcase_08 AC 141 ms
81,368 KB
testcase_09 AC 225 ms
85,260 KB
testcase_10 AC 85 ms
79,744 KB
testcase_11 AC 222 ms
83,284 KB
testcase_12 AC 214 ms
83,876 KB
testcase_13 AC 224 ms
83,752 KB
testcase_14 AC 245 ms
84,828 KB
testcase_15 AC 88 ms
79,772 KB
testcase_16 AC 124 ms
80,772 KB
testcase_17 AC 158 ms
81,200 KB
testcase_18 AC 125 ms
80,912 KB
testcase_19 AC 146 ms
81,272 KB
testcase_20 AC 218 ms
84,304 KB
testcase_21 AC 222 ms
84,212 KB
testcase_22 AC 211 ms
83,452 KB
testcase_23 AC 172 ms
81,892 KB
testcase_24 AC 131 ms
81,404 KB
testcase_25 AC 228 ms
83,848 KB
testcase_26 AC 226 ms
83,896 KB
testcase_27 AC 179 ms
82,656 KB
testcase_28 AC 130 ms
81,612 KB
testcase_29 AC 167 ms
81,624 KB
testcase_30 AC 107 ms
80,240 KB
testcase_31 AC 108 ms
79,872 KB
testcase_32 AC 141 ms
81,532 KB
testcase_33 AC 136 ms
81,188 KB
testcase_34 AC 86 ms
79,356 KB
testcase_35 AC 84 ms
79,364 KB
testcase_36 AC 121 ms
81,060 KB
testcase_37 AC 93 ms
79,652 KB
testcase_38 AC 216 ms
84,096 KB
testcase_39 AC 91 ms
79,256 KB
testcase_40 AC 85 ms
79,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

from dataclasses import dataclass


class mf_graph:
    @dataclass
    class edge:
        from_: int
        to: int
        cap: int
        flow: int
        # def __init__(self, from_, to, cap, flow):
        #     self.from_ = from_
        #     self.to = to
        #     self.cap = cap
        #     self.flow = flow

    @dataclass
    class _edge:
        to: int
        rev: int
        cap: int
        # def __init__(self, to, rev, cap):
        #     self.to = to
        #     self.rev = rev
        #     self.cap = cap

    def __init__(self, n):
        self.n = n
        self.G = [[] for _ in range(n)]
        self.pos = []

    def add_edge(self, from_, to, cap):
        m = len(self.pos)
        self.pos.append((from_, len(self.G[from_])))
        from_id = len(self.G[from_])
        to_id = len(self.G[to])
        if from_ == to:
            to_id += 1

        self.G[from_].append(mf_graph._edge(to, to_id, cap))
        self.G[to].append(mf_graph._edge(from_, from_id, 0))
        return m

    def get_edge(self, i):
        _e = self.G[self.pos[i][0]][self.pos[i][1]]
        _re = self.G[_e.to][_e.rev]
        return mf_graph.edge(self.pos[i][0], _e.to, _e.cap + _re.cap, _re.cap)

    def edges(self):
        m = len(self.pos)
        result = []
        for i in range(m):
            result.append(self.get_edge(i))

        return result

    def change_edge(self, i, new_cap, new_flow):
        _e = self.G[self.pos[i][0]][self.pos[i][1]]
        self.G[_e.to][_e.rev].cap = new_flow
        self.G[self.pos[i][0]][self.pos[i][1]].cap = new_cap - new_flow

    def flow(self, s, t, flow_limit=1 << 60):
        level = []
        iter = []
        que = deque()

        def bfs():
            nonlocal level
            level = [-1] * self.n
            level[s] = 0
            que.clear()
            que.append(s)
            while que:
                v = que.popleft()
                for e in self.G[v]:
                    if e.cap == 0 or level[e.to] >= 0:
                        continue
                    level[e.to] = level[v] + 1
                    if e.to == t:
                        return
                    que.append(e.to)

        def dfs(v, up):
            if v == s:
                return up

            nonlocal level, iter

            res = 0
            level_v = level[v]
            while iter[v] < len(self.G[v]):
                i = iter[v]
                iter[v] += 1
                e = self.G[v][i]
                if level_v <= level[e.to] or self.G[e.to][e.rev].cap == 0:
                    continue

                d = dfs(e.to, min(up - res, self.G[e.to][e.rev].cap))
                if d <= 0:
                    continue

                self.G[v][i].cap += d
                self.G[e.to][e.rev].cap -= d
                res += d
                if res == up:
                    return res

            level[v] = self.n
            return res

        flow = 0
        while flow < flow_limit:
            bfs()
            if level[t] == -1:
                break

            iter = [0] * self.n
            f = dfs(t, flow_limit - flow)
            if f == 0:
                break
            flow += f

        return flow

    def min_cut(self, s):
        visited = [False] * self.n
        que = deque()
        que.append(s)
        while que:
            p = que.popleft()
            visited[p] = True
            for e in self.G[p]:
                if e.cap and not visited[e.to]:
                    visited[e.to] = True
                    que.append(e.to)

        return visited


n, m = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(n)]

for i in range(n):
    tot1 = 0
    tot2 = 0
    for j in range(n):
        tot1 += A[i][j]
        tot2 += A[j][i]

    if tot1 != m or tot2 != m:
        print(-1)
        exit()

for _ in range(m):
    G = mf_graph(2 * n + 2)
    s = 2 * n
    t = 2 * n + 1
    for i in range(n):
        G.add_edge(s, i, 1)
        G.add_edge(n + i, t, 1)
        for j in range(n):
            if A[i][j]:
                G.add_edge(i, n + j, 1)

    G.flow(s, t)
    P = [-1] * n
    for e in G.edges():
        if e.from_ != s and e.to != t and e.flow == 1:
            P[e.from_] = e.to - n + 1
            A[e.from_][e.to - n] -= 1
    print(*P)
0