結果

問題 No.421 しろくろチョコレート
ユーザー maspymaspy
提出日時 2020-03-18 02:24:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 4,027 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-09-23 07:25:15
合計ジャッジ時間 4,456 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,136 KB
testcase_01 AC 46 ms
11,904 KB
testcase_02 AC 38 ms
11,520 KB
testcase_03 AC 32 ms
11,264 KB
testcase_04 AC 36 ms
11,008 KB
testcase_05 AC 35 ms
11,136 KB
testcase_06 AC 32 ms
11,264 KB
testcase_07 AC 40 ms
11,520 KB
testcase_08 AC 37 ms
11,136 KB
testcase_09 AC 33 ms
11,264 KB
testcase_10 AC 33 ms
11,264 KB
testcase_11 AC 43 ms
11,648 KB
testcase_12 AC 30 ms
11,136 KB
testcase_13 AC 31 ms
11,264 KB
testcase_14 AC 31 ms
11,264 KB
testcase_15 AC 30 ms
11,264 KB
testcase_16 AC 64 ms
12,288 KB
testcase_17 AC 56 ms
12,288 KB
testcase_18 AC 60 ms
12,288 KB
testcase_19 AC 31 ms
11,136 KB
testcase_20 AC 53 ms
12,032 KB
testcase_21 AC 56 ms
12,288 KB
testcase_22 AC 43 ms
11,520 KB
testcase_23 AC 31 ms
11,264 KB
testcase_24 AC 31 ms
11,264 KB
testcase_25 AC 31 ms
11,264 KB
testcase_26 AC 31 ms
11,136 KB
testcase_27 AC 31 ms
11,264 KB
testcase_28 AC 41 ms
11,904 KB
testcase_29 AC 43 ms
12,160 KB
testcase_30 AC 42 ms
12,032 KB
testcase_31 AC 48 ms
13,312 KB
testcase_32 AC 43 ms
11,904 KB
testcase_33 AC 44 ms
12,032 KB
testcase_34 AC 37 ms
11,392 KB
testcase_35 AC 36 ms
11,392 KB
testcase_36 AC 41 ms
11,648 KB
testcase_37 AC 58 ms
12,416 KB
testcase_38 AC 76 ms
12,544 KB
testcase_39 AC 40 ms
11,392 KB
testcase_40 AC 48 ms
11,776 KB
testcase_41 AC 35 ms
11,392 KB
testcase_42 AC 34 ms
11,136 KB
testcase_43 AC 39 ms
11,392 KB
testcase_44 AC 60 ms
12,032 KB
testcase_45 AC 36 ms
11,264 KB
testcase_46 AC 35 ms
11,520 KB
testcase_47 AC 43 ms
11,776 KB
testcase_48 AC 47 ms
12,672 KB
testcase_49 AC 39 ms
11,392 KB
testcase_50 AC 37 ms
11,392 KB
testcase_51 AC 56 ms
12,032 KB
testcase_52 AC 39 ms
11,648 KB
testcase_53 AC 35 ms
11,136 KB
testcase_54 AC 39 ms
11,520 KB
testcase_55 AC 33 ms
11,136 KB
testcase_56 AC 35 ms
11,136 KB
testcase_57 AC 36 ms
11,392 KB
testcase_58 AC 48 ms
11,648 KB
testcase_59 AC 39 ms
11,392 KB
testcase_60 AC 75 ms
12,800 KB
testcase_61 AC 82 ms
12,672 KB
testcase_62 AC 31 ms
11,264 KB
testcase_63 AC 31 ms
11,264 KB
testcase_64 AC 35 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from collections import deque


# %%
class Dinic:
    def __init__(self, N, source, sink):
        self.N = N
        self.G = [[] for _ in range(N)]
        self.source = source
        self.sink = sink

    def add_edge(self, fr, to, cap):
        n1 = len(self.G[fr])
        n2 = len(self.G[to])
        self.G[fr].append([to, cap, n2])
        self.G[to].append([fr, 0, n1])  # 逆辺を cap 0 で追加

    def add_edge_undirected(self, fr, to, cap):
        n1 = len(self.G[fr])
        n2 = len(self.G[to])
        self.G[fr].append([to, cap, n2])
        self.G[to].append([fr, cap, n1])

    def bfs(self):
        level = [0] * self.N
        G = self.G
        source = self.source
        sink = self.sink
        q = deque([source])
        level[source] = 1
        pop = q.popleft
        append = q.append
        while q:
            v = pop()
            lv = level[v] + 1
            for to, cap, rev in G[v]:
                if not cap:
                    continue
                if level[to]:
                    continue
                level[to] = lv
                if to == sink:
                    self.level = level
                    return
                append(to)
        self.level = level

    def dfs(self):
        INF = 10**18
        G = self.G
        sink = self.sink
        prog = self.progress
        level = self.level
        ascend = False
        ff = 0
        stack = [(self.source, INF)]
        while stack:
            if ff:
                # このまま更新だけして戻っていく
                v, f = stack.pop()
                p = prog[v]
                to, cap, rev = G[v][p]
                G[v][p][1] -= ff
                G[to][rev][1] += ff
                continue
            v, f = stack[-1]
            if v == sink:
                ff = f
                stack.pop()
                continue
            E = G[v]
            lv = level[v]
            if ascend:
                # 流せずに戻ってきた
                prog[v] += 1
            find_flag = False
            for i in range(prog[v], len(E)):
                to, cap, rev = E[i]
                prog[v] = i
                if not cap:
                    continue
                if level[to] <= lv:
                    continue
                find_flag = True
                break
            if not find_flag:
                ascend = True
                stack.pop()
                continue
            ascend = False
            x = f if f < cap else cap
            stack.append((to, x))
        return ff

    def max_flow(self):
        flow = 0
        while True:
            self.bfs()
            if not self.level[self.sink]:
                return flow
            self.progress = [0] * self.N
            while True:
                f = self.dfs()
                if not f:
                    break
                flow += f
        return flow


# %%
H, W = map(int, readline().split())
S = list(''.join(read().decode().split()))


# %%
source = H * W
sink = H * W + 1
dinic = Dinic(N=H * W + 2, source=source, sink=sink)
for h in range(H - 1):
    for w in range(W):
        i = W * h + w
        j = i + W
        if S[i] == 'b' and S[j] == 'w':
            dinic.add_edge(i, j, 1)
        elif S[i] == 'w' and S[j] == 'b':
            dinic.add_edge(j, i, 1)
for h in range(H):
    for w in range(W - 1):
        i = W * h + w
        j = i + 1
        if S[i] == 'b' and S[j] == 'w':
            dinic.add_edge(i, j, 1)
        elif S[i] == 'w' and S[j] == 'b':
            dinic.add_edge(j, i, 1)
for i in range(H * W):
    if S[i] == 'b':
        dinic.add_edge(source, i, 1)
    elif S[i] == 'w':
        dinic.add_edge(i, sink, 1)


# %%
f = dinic.max_flow()

# %%
B = S.count('b')
W = S.count('w')
score = 100 * f
B -= f
W -= f
x = min(B, W)
score += 10 * x
B -= x
W -= x
score += B + W
print(score)
0