結果

問題 No.179 塗り分け
ユーザー daku9640daku9640
提出日時 2018-05-31 00:30:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 134 ms / 3,000 ms
コード長 1,726 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-23 14:47:02
合計ジャッジ時間 2,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 30 ms
11,008 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 AC 30 ms
11,008 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 33 ms
11,264 KB
testcase_11 AC 33 ms
11,136 KB
testcase_12 AC 134 ms
11,264 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 29 ms
10,880 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 31 ms
11,008 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 29 ms
11,008 KB
testcase_22 AC 31 ms
11,008 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 30 ms
10,880 KB
testcase_26 AC 30 ms
11,008 KB
testcase_27 AC 33 ms
10,880 KB
testcase_28 AC 30 ms
11,008 KB
testcase_29 AC 35 ms
10,880 KB
testcase_30 AC 34 ms
10,880 KB
testcase_31 AC 39 ms
11,264 KB
testcase_32 AC 35 ms
11,008 KB
testcase_33 AC 41 ms
11,008 KB
testcase_34 AC 33 ms
11,264 KB
testcase_35 AC 43 ms
11,008 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 31 ms
10,752 KB
testcase_38 AC 31 ms
10,752 KB
testcase_39 AC 29 ms
10,752 KB
testcase_40 AC 30 ms
10,752 KB
testcase_41 AC 29 ms
10,880 KB
testcase_42 AC 30 ms
10,752 KB
testcase_43 AC 30 ms
10,752 KB
testcase_44 AC 30 ms
11,008 KB
testcase_45 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class LIST:
    __slots__ = ['li', 'len_li', 'b', 'ma', 'cnt']
    def __init__(self, li):
        self.li = li
        self.len_li = len(li)
        self.b = [0] * self.len_li
        self.ma = {a:i for i, a in enumerate(li)}
        self.cnt = 0
    def __len__(self):
        return self.b.count(0)
    def reset(self):
        self.b = [0] * self.len_li
        self.cnt = 0
    def pop(self, a):
        self.b[a] = 1
        return self.li[a]
    def popleft(self):
        for i in range(self.cnt, self.len_li):
            if self.b[i] == 0:
                self.b[i] = 1
                for j in range(i + 1, self.len_li):
                    if self.b[j] == 0:
                        self.cnt = j
                        break
                return self.li[i]
        return (-100, -100)
    def find(self, a):
        if a in self.ma:
            return True
        return False
    def remove(self, a):
        if self.find(a):
            self.b[self.ma[a]] = 1
            return True
        return False
def f(m, y, x, n):
    for _ in range(n):
        a = m.popleft()
        ny = y + a[0]
        nx = x + a[1]
        if not m.remove((ny, nx)):
            return False
    return True
def solve():
    h, w = map(int, input().split())
    s = tuple(input() for _ in range(h))
    c_cnt = sum(a.count('#') for a in s)
    if c_cnt == 0 or c_cnt & 1:
        return "NO"
    m = tuple((i, j) for i in range(h) for j in range(w) if s[i][j] == '#')
    a = m[0]
    dp = LIST(m[1:])
    n = len(dp) // 2
    for i in range(len(dp)):
        dy, dx = dp.pop(i)
        y = dy - a[0]
        x = dx - a[1]
        if f(dp, y, x, n):
            return "YES"
        dp.reset()
    return "NO"
print(solve())
0