結果

問題 No.421 しろくろチョコレート
ユーザー roarisroaris
提出日時 2019-11-01 14:07:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 1,401 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 79,224 KB
最終ジャッジ日時 2024-09-23 07:24:47
合計ジャッジ時間 7,923 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,460 KB
testcase_01 AC 119 ms
77,336 KB
testcase_02 AC 82 ms
76,108 KB
testcase_03 AC 69 ms
71,612 KB
testcase_04 AC 79 ms
76,148 KB
testcase_05 AC 82 ms
76,288 KB
testcase_06 AC 49 ms
61,592 KB
testcase_07 AC 95 ms
76,652 KB
testcase_08 AC 77 ms
76,132 KB
testcase_09 AC 79 ms
76,476 KB
testcase_10 AC 70 ms
73,232 KB
testcase_11 AC 94 ms
76,852 KB
testcase_12 AC 42 ms
55,304 KB
testcase_13 AC 42 ms
54,208 KB
testcase_14 AC 43 ms
55,300 KB
testcase_15 AC 42 ms
54,360 KB
testcase_16 AC 142 ms
77,572 KB
testcase_17 AC 189 ms
77,816 KB
testcase_18 AC 212 ms
77,916 KB
testcase_19 AC 43 ms
55,296 KB
testcase_20 AC 137 ms
77,648 KB
testcase_21 AC 135 ms
77,532 KB
testcase_22 AC 100 ms
76,808 KB
testcase_23 AC 42 ms
54,368 KB
testcase_24 AC 41 ms
54,144 KB
testcase_25 AC 42 ms
53,732 KB
testcase_26 AC 43 ms
54,924 KB
testcase_27 AC 44 ms
55,280 KB
testcase_28 AC 97 ms
76,984 KB
testcase_29 AC 117 ms
77,596 KB
testcase_30 AC 110 ms
77,228 KB
testcase_31 AC 146 ms
77,992 KB
testcase_32 AC 104 ms
77,544 KB
testcase_33 AC 116 ms
77,452 KB
testcase_34 AC 62 ms
71,476 KB
testcase_35 AC 61 ms
71,248 KB
testcase_36 AC 103 ms
76,656 KB
testcase_37 AC 217 ms
78,780 KB
testcase_38 AC 220 ms
78,964 KB
testcase_39 AC 93 ms
76,800 KB
testcase_40 AC 114 ms
77,504 KB
testcase_41 AC 89 ms
76,244 KB
testcase_42 AC 74 ms
76,184 KB
testcase_43 AC 96 ms
76,936 KB
testcase_44 AC 133 ms
77,780 KB
testcase_45 AC 81 ms
76,188 KB
testcase_46 AC 81 ms
76,060 KB
testcase_47 AC 119 ms
77,168 KB
testcase_48 AC 133 ms
78,332 KB
testcase_49 AC 92 ms
76,748 KB
testcase_50 AC 84 ms
76,088 KB
testcase_51 AC 142 ms
77,532 KB
testcase_52 AC 106 ms
76,704 KB
testcase_53 AC 74 ms
76,108 KB
testcase_54 AC 82 ms
76,564 KB
testcase_55 AC 68 ms
72,640 KB
testcase_56 AC 67 ms
71,932 KB
testcase_57 AC 79 ms
76,152 KB
testcase_58 AC 124 ms
77,168 KB
testcase_59 AC 85 ms
76,324 KB
testcase_60 AC 236 ms
79,224 KB
testcase_61 AC 155 ms
77,932 KB
testcase_62 AC 43 ms
55,540 KB
testcase_63 AC 43 ms
55,780 KB
testcase_64 AC 45 ms
60,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
from collections import defaultdict

def dfs(v, t, f, used):
    if v == t:
        return f
    
    used[v] = True
    
    for nn, cap in edges[v].items():
        if not used[nn] and cap > 0:
            d = dfs(nn, t, min(f, cap), used)
            
            if d > 0:
                edges[v][nn] -= d
                edges[nn][v] += d
                
                return d
    
    return 0
    
def max_flow(s, t):
    flow = 0
    
    while True:
        used = [False] * (N*M+2)
        f = dfs(s, t, 10**18, used)
        
        if f == 0:
            return flow
            
        flow += f

N, M = map(int, input().split())
S = [input() for _ in range(N)]
edges = defaultdict(dict)
wc, bc = 0, 0

for i in range(N):
    for j in range(M):
        if S[i][j] == 'w':
            wc += 1
            edges[0][M*i+j+1] = 1
            edges[M*i+j+1][0] = 0
            
            for ni, nj in [(i-1, j), (i+1, j), (i, j-1), (i, j+1)]:
                if 0<=ni<N and 0<=nj<M and S[ni][nj] != '.':
                    edges[M*i+j+1][M*ni+nj+1] = 1
                    edges[M*ni+nj+1][M*i+j+1] = 0
        
        if S[i][j] == 'b':
            bc += 1
            edges[M*i+j+1][N*M+1] = 1
            edges[N*M+1][M*i+j+1] = 0

max_pair = max_flow(0, N*M+1)
wc -= max_pair
bc -= max_pair

print(max_pair*100+min(wc, bc)*10+abs(wc-bc))
0