結果

問題 No.421 しろくろチョコレート
ユーザー maspymaspy
提出日時 2020-03-18 02:20:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 4,073 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 11,312 KB
実行使用メモリ 11,020 KB
最終ジャッジ日時 2023-08-20 19:33:05
合計ジャッジ時間 5,140 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,940 KB
testcase_01 WA -
testcase_02 AC 22 ms
9,324 KB
testcase_03 WA -
testcase_04 AC 21 ms
9,192 KB
testcase_05 WA -
testcase_06 AC 19 ms
9,028 KB
testcase_07 WA -
testcase_08 AC 21 ms
9,244 KB
testcase_09 AC 20 ms
9,196 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 17 ms
8,888 KB
testcase_13 AC 18 ms
9,020 KB
testcase_14 AC 19 ms
8,920 KB
testcase_15 AC 18 ms
9,032 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 17 ms
9,080 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 18 ms
8,900 KB
testcase_24 AC 18 ms
9,052 KB
testcase_25 AC 18 ms
8,912 KB
testcase_26 AC 18 ms
9,096 KB
testcase_27 AC 18 ms
8,888 KB
testcase_28 AC 26 ms
9,792 KB
testcase_29 AC 27 ms
9,916 KB
testcase_30 AC 27 ms
9,884 KB
testcase_31 AC 33 ms
11,020 KB
testcase_32 AC 29 ms
9,884 KB
testcase_33 WA -
testcase_34 AC 23 ms
9,284 KB
testcase_35 AC 21 ms
9,200 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 36 ms
9,784 KB
testcase_41 AC 20 ms
9,192 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 45 ms
10,180 KB
testcase_45 WA -
testcase_46 AC 21 ms
9,312 KB
testcase_47 WA -
testcase_48 AC 31 ms
10,608 KB
testcase_49 AC 24 ms
9,436 KB
testcase_50 AC 22 ms
9,332 KB
testcase_51 AC 43 ms
10,144 KB
testcase_52 WA -
testcase_53 AC 21 ms
9,272 KB
testcase_54 AC 23 ms
9,440 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 18 ms
9,092 KB
testcase_63 AC 17 ms
8,984 KB
testcase_64 AC 21 ms
9,060 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_undirected(i, j, 1)
        elif S[i] == 'w' and S[j] == 'b':
            dinic.add_edge_undirected(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_undirected(i, j, 1)
        elif S[i] == 'w' and S[j] == 'b':
            dinic.add_edge_undirected(j, i, 1)
for i in range(H * W):
    if S[i] == 'b':
        dinic.add_edge_undirected(source, i, 1)
    elif S[i] == 'w':
        dinic.add_edge_undirected(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