結果
問題 | No.421 しろくろチョコレート |
ユーザー | masa_aa |
提出日時 | 2021-05-21 00:49:04 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,168 bytes |
コンパイル時間 | 272 ms |
コンパイル使用メモリ | 82,356 KB |
実行使用メモリ | 75,372 KB |
最終ジャッジ日時 | 2024-10-10 07:24:37 |
合計ジャッジ時間 | 5,366 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,256 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 52 ms
62,636 KB |
testcase_08 | WA | - |
testcase_09 | AC | 40 ms
54,136 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 39 ms
53,296 KB |
testcase_13 | AC | 39 ms
52,844 KB |
testcase_14 | AC | 38 ms
53,368 KB |
testcase_15 | AC | 38 ms
52,760 KB |
testcase_16 | WA | - |
testcase_17 | AC | 75 ms
75,372 KB |
testcase_18 | AC | 75 ms
73,848 KB |
testcase_19 | AC | 40 ms
53,956 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 39 ms
52,964 KB |
testcase_24 | AC | 39 ms
54,104 KB |
testcase_25 | AC | 40 ms
53,500 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 54 ms
64,888 KB |
testcase_29 | AC | 62 ms
67,860 KB |
testcase_30 | AC | 60 ms
66,344 KB |
testcase_31 | AC | 59 ms
66,364 KB |
testcase_32 | WA | - |
testcase_33 | AC | 61 ms
68,336 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 73 ms
72,788 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 42 ms
53,896 KB |
testcase_42 | AC | 42 ms
54,780 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | AC | 71 ms
71,636 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 74 ms
74,116 KB |
testcase_52 | AC | 52 ms
64,268 KB |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | AC | 77 ms
74,648 KB |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | AC | 45 ms
60,852 KB |
ソースコード
class BipartiteMatching: def __init__(self, N, M): self.N = N self.M = M self.pairA = [-1] * N self.pairB = [-1] * M self.edge = [[] for _ in range(N)] self.was = [0] * N self.iter = 0 def add_edge(self, s, t): self.edge[s].append(t) def _DFS(self, s): self.was[s] = self.iter for t in self.edge[s]: if self.pairB[t] == -1: self.pairA[s] = t self.pairB[t] = s return True for t in self.edge[s]: if self.was[self.pairB[t]] != self.iter and self._DFS(self.pairB[t]): self.pairA[s] = t self.pairB[t] = s return True return False def bipartite_matching(self): res = 0 while True: self.iter += 1 found = 0 for i in range(self.N): if self.pairA[i] == -1 and self._DFS(i): found += 1 if not found: break res += found return res import sys input = sys.stdin.readline sys.setrecursionlimit(10000000) n, m = map(int, input().split()) s = [input() for _ in range(n)] bm = BipartiteMatching(n * m // 2 + 1, n * m // 2) b, w = 0, 0 for i in range(n): for j in range(m): if s[i][j] == ".": continue if s[i][j] == "b": b += 1 else: w += 1 if (i + j) % 2: if j < m - 1: if s[i][j + 1] != ".": bm.add_edge((i * m + j + 1) // 2, (i * m + j) // 2) if i < n - 1: if s[i + 1][j] != ".": bm.add_edge(((i + 1) * m + j) // 2, (i * m + j) // 2) else: if j < m - 1: if s[i][j + 1] != ".": bm.add_edge((i * m + j) // 2, (i * m + j + 1) // 2) if i < n - 1: if s[i + 1][j] != ".": bm.add_edge((i * m + j) // 2, ((i + 1) * m + j) // 2) match = bm.bipartite_matching() b -= match w -= match k = min(b, m) print(100 * match + 10 * k + (b + w - k - k))