結果

問題 No.1954 CHECKER×CHECKER(2)
ユーザー chineristACchineristAC
提出日時 2022-05-20 23:34:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 1,000 ms
コード長 2,016 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 69,248 KB
最終ジャッジ日時 2024-09-20 10:00:41
合計ジャッジ時間 2,643 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
56,064 KB
testcase_01 AC 46 ms
56,320 KB
testcase_02 AC 47 ms
56,064 KB
testcase_03 AC 45 ms
56,064 KB
testcase_04 AC 44 ms
56,064 KB
testcase_05 AC 44 ms
56,320 KB
testcase_06 AC 43 ms
56,064 KB
testcase_07 AC 44 ms
56,064 KB
testcase_08 AC 47 ms
56,320 KB
testcase_09 AC 44 ms
56,064 KB
testcase_10 AC 45 ms
56,320 KB
testcase_11 AC 44 ms
56,192 KB
testcase_12 AC 45 ms
56,192 KB
testcase_13 AC 57 ms
65,280 KB
testcase_14 AC 45 ms
56,576 KB
testcase_15 AC 45 ms
56,576 KB
testcase_16 AC 45 ms
56,192 KB
testcase_17 AC 44 ms
56,548 KB
testcase_18 AC 46 ms
57,216 KB
testcase_19 AC 45 ms
56,704 KB
testcase_20 AC 45 ms
57,216 KB
testcase_21 AC 54 ms
66,176 KB
testcase_22 AC 61 ms
69,248 KB
testcase_23 AC 46 ms
57,088 KB
testcase_24 AC 51 ms
64,768 KB
testcase_25 AC 57 ms
67,328 KB
testcase_26 AC 43 ms
56,576 KB
testcase_27 AC 55 ms
66,816 KB
testcase_28 AC 60 ms
68,096 KB
testcase_29 AC 45 ms
56,704 KB
testcase_30 AC 60 ms
68,096 KB
testcase_31 AC 45 ms
56,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
import heapq
from itertools import permutations
from math import gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def calc(h,w,A,f):
    if not f:
        if A[-1][-1]!=0:
            return False
        c = [A[h-1][j] for j in range(w-1)]
        r = [A[i][w-1] for i in range(h-1)]
        for i in range(h-1):
            for j in range(w-1):
                if A[i][j]!=r[i]^c[j]:
                    return False
        return True
    
    else:
        B = [[A[i][j] for j in range(w)] for i in range(h)]
        if calc(h,w,B,False):
            return True
        for j in range(w):
            B[h-1][j] ^= 1
        if calc(h,w,B,False):
            return True
        return False

H,W = mi()
A = [[(i+j)&1 for j in range(W)] for i in range(H)]
for i in range(H):
    S = input()
    #S = [random.choice(".#") for j in range(W)]
    for j in range(W):
        if S[j]=="#":
            A[i][j] ^= 1


M = int(input())
row = [-1]
column = [-1]

if 1:
    for _ in range(M):
        t,n = mi()
        if t==1:
            row.append(n-1)
        else:
            column.append(n-1)
else:
    row = [-1] + [i for i in range(H)]
    column = [-1] + [i for i in range(H)]


f = False
if H-1 not in row:
    row.append(H-1)
else:
    f = True

if W-1 not in column:
    column.append(W-1)
else:
    f = True

row.sort()
column.sort()
h = len(row)-1
w = len(column)-1

new_A = [[0]*w for i in range(h)]
for i in range(h):
    for j in range(w):
        rl,rr = row[i]+1,row[i+1]
        cl,cr = column[j]+1,column[j+1]

        t = A[rl][cl]
        for p in range(rl,rr+1):
            for q in range(cl,cr+1):
                if t!=A[p][q]:
                    exit(print("No"))
        new_A[i][j] = t

if calc(h,w,new_A,f):
    exit(print("Yes"))
new_A = [[new_A[i][j]^1 for j in range(w)] for i in range(h)]
if calc(h,w,new_A,f):
    exit(print("Yes"))
print("No")



0