結果

問題 No.1954 CHECKER×CHECKER(2)
ユーザー chineristACchineristAC
提出日時 2022-05-20 23:34:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 2,016 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 81,640 KB
実行使用メモリ 69,012 KB
最終ジャッジ日時 2023-10-20 14:30:48
合計ジャッジ時間 2,808 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
56,156 KB
testcase_01 AC 40 ms
56,156 KB
testcase_02 AC 39 ms
56,156 KB
testcase_03 AC 39 ms
56,156 KB
testcase_04 AC 39 ms
56,156 KB
testcase_05 AC 40 ms
56,156 KB
testcase_06 AC 43 ms
56,156 KB
testcase_07 AC 43 ms
56,156 KB
testcase_08 AC 44 ms
56,156 KB
testcase_09 AC 40 ms
56,156 KB
testcase_10 AC 40 ms
58,204 KB
testcase_11 AC 41 ms
58,204 KB
testcase_12 AC 42 ms
56,156 KB
testcase_13 AC 49 ms
66,564 KB
testcase_14 AC 40 ms
58,204 KB
testcase_15 AC 40 ms
58,204 KB
testcase_16 AC 39 ms
58,204 KB
testcase_17 AC 48 ms
58,204 KB
testcase_18 AC 43 ms
58,204 KB
testcase_19 AC 40 ms
58,204 KB
testcase_20 AC 43 ms
58,204 KB
testcase_21 AC 50 ms
66,568 KB
testcase_22 AC 55 ms
69,012 KB
testcase_23 AC 42 ms
58,204 KB
testcase_24 AC 49 ms
64,364 KB
testcase_25 AC 51 ms
68,956 KB
testcase_26 AC 41 ms
58,204 KB
testcase_27 AC 51 ms
66,892 KB
testcase_28 AC 52 ms
68,992 KB
testcase_29 AC 39 ms
58,204 KB
testcase_30 AC 52 ms
68,988 KB
testcase_31 AC 38 ms
56,156 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