結果

問題 No.421 しろくろチョコレート
ユーザー 0w10w1
提出日時 2017-04-27 17:09:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,117 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 77,416 KB
最終ジャッジ日時 2024-09-13 14:49:40
合計ジャッジ時間 6,477 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 88 ms
76,768 KB
testcase_02 AC 71 ms
76,072 KB
testcase_03 AC 43 ms
60,268 KB
testcase_04 AC 59 ms
72,984 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 75 ms
76,108 KB
testcase_08 AC 74 ms
76,308 KB
testcase_09 AC 44 ms
59,792 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 39 ms
53,236 KB
testcase_13 AC 40 ms
54,048 KB
testcase_14 WA -
testcase_15 AC 40 ms
52,460 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 39 ms
52,724 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 72 ms
76,192 KB
testcase_23 AC 40 ms
52,776 KB
testcase_24 AC 39 ms
52,200 KB
testcase_25 AC 39 ms
53,060 KB
testcase_26 AC 39 ms
52,836 KB
testcase_27 AC 39 ms
52,480 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 70 ms
76,212 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 86 ms
76,576 KB
testcase_41 WA -
testcase_42 AC 54 ms
66,272 KB
testcase_43 AC 68 ms
76,104 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 80 ms
76,528 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 59 ms
71,608 KB
testcase_51 AC 131 ms
77,416 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 76 ms
76,264 KB
testcase_55 AC 44 ms
59,416 KB
testcase_56 AC 46 ms
60,172 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 42 ms
57,972 KB
testcase_63 AC 41 ms
59,036 KB
testcase_64 AC 73 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

dx = [ 0, 1, 0, -1 ]
dy = [ 1, 0, -1, 0 ]

N, M = map( int, input().split() )
G = [ input() for i in range( N ) ]

adj = [ [] for i in range( N * M ) ]

for i in range( N ):
  for j in range( M ):
    if G[ i ][ j ] in "b.": continue
    for di in range( 4 ):
      ni, nj = i + dx[ di ], j + dy[ di ]
      if not ( 0 <= ni and ni < N and 0 <= nj and nj < M ): continue
      if G[ ni ][ nj ] == '.': continue
      adj[ i * M + j ].append( ni * M + nj )

def find_mate( u, bf, vis = None ):
  if vis is None:
    vis = [ False for i in range( N * M ) ]
  for v in adj[ u ]:
    if vis[ v ]: continue
    vis[ v ] = True
    if bf[ v ] == -1 or find_mate( bf[ v ], bf, vis ):
      bf[ v ] = u
      return True
  return False

bf = [ -1 for i in range( N * M ) ]
match_cnt = 0
for i in range( 0, N * M, 2 ):
  match_cnt += find_mate( i, bf )

rw = sum( G[ i ][ j ] == 'w' for i, j in product( range( N ), range( M ) ) ) - match_cnt
rb = sum( G[ i ][ j ] == 'b' for i, j in product( range( N ), range( M ) ) ) - match_cnt
print( match_cnt * 100 + min( rw, rb ) * 10 + abs( rw - rb ) )
0