結果
問題 | No.421 しろくろチョコレート |
ユーザー | roaris |
提出日時 | 2019-11-01 14:22:51 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,876 bytes |
コンパイル時間 | 959 ms |
コンパイル使用メモリ | 82,132 KB |
実行使用メモリ | 78,024 KB |
最終ジャッジ日時 | 2024-09-14 22:40:01 |
合計ジャッジ時間 | 7,465 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | AC | 51 ms
60,672 KB |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 43 ms
54,144 KB |
testcase_13 | AC | 43 ms
54,016 KB |
testcase_14 | AC | 44 ms
54,016 KB |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | AC | 44 ms
53,888 KB |
testcase_25 | AC | 47 ms
54,016 KB |
testcase_26 | AC | 47 ms
54,144 KB |
testcase_27 | AC | 43 ms
54,144 KB |
testcase_28 | AC | 83 ms
76,416 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 68 ms
71,168 KB |
testcase_32 | AC | 77 ms
74,880 KB |
testcase_33 | WA | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | RE | - |
testcase_40 | AC | 68 ms
70,144 KB |
testcase_41 | AC | 61 ms
65,408 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 67 ms
71,168 KB |
testcase_45 | RE | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | AC | 70 ms
70,912 KB |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | AC | 74 ms
73,728 KB |
testcase_52 | WA | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | AC | 45 ms
54,272 KB |
testcase_63 | AC | 44 ms
54,144 KB |
testcase_64 | AC | 53 ms
62,720 KB |
ソースコード
from collections import defaultdict class Unionfind: def __init__(self, N): self.par = [-1] * N self.rank = [1] * N def root(self, x): if self.par[x] < 0: return x self.par[x] = self.root(self.par[x]) return self.par[x] def unite(self, x, y): rx, ry = self.root(x), self.root(y) if rx != ry: if self.rank[rx] >= self.rank[ry]: self.par[rx] += self.par[ry] self.par[ry] = rx if self.rank[rx] == self.rank[ry]: self.rank[rx] += 1 else: self.par[ry] += self.par[rx] self.par[rx] = ry def is_same(self, x, y): return self.root(x) == self.root(y) def count(self, x): return -self.par[self.root(x)] N, M = map(int, input().split()) S = [input() for _ in range(N)] uf = Unionfind(N*M) for i in range(N): for j in range(M): 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] != '.': uf.unite(M*i+j, M*ni+nj) group = defaultdict(dict) for i in range(N): for j in range(M): if S[i][j] == 'w': if 0 not in group[uf.root(M*i+j)]: group[uf.root(M*i+j)][0] = 1 else: group[uf.root(M*i+j)][0] += 1 elif S[i][j] == 'b': if 1 not in group[uf.root(M*i+j)]: group[uf.root(M*i+j)][1]= 1 else: group[uf.root(M*i+j)][1] += 1 pair_sum = 0 w_amari = 0 b_amari = 0 for k in group: pair = min(group[k][0], group[k][1]) pair_sum += pair w_amari += group[k][0]-pair b_amari += group[k][1]-pair print(pair_sum*100+min(w_amari, b_amari)*10+abs(w_amari-b_amari))