結果

問題 No.179 塗り分け
ユーザー buey_tbuey_t
提出日時 2023-03-24 10:03:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,196 ms / 3,000 ms
コード長 2,404 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 100,480 KB
最終ジャッジ日時 2024-09-18 15:57:28
合計ジャッジ時間 24,046 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
89,240 KB
testcase_01 AC 123 ms
89,344 KB
testcase_02 AC 136 ms
89,984 KB
testcase_03 AC 132 ms
89,532 KB
testcase_04 AC 140 ms
89,736 KB
testcase_05 AC 282 ms
91,856 KB
testcase_06 AC 179 ms
90,624 KB
testcase_07 AC 132 ms
89,344 KB
testcase_08 AC 1,086 ms
97,164 KB
testcase_09 AC 1,196 ms
98,432 KB
testcase_10 AC 566 ms
93,820 KB
testcase_11 AC 503 ms
92,920 KB
testcase_12 AC 862 ms
96,120 KB
testcase_13 AC 141 ms
89,984 KB
testcase_14 AC 135 ms
89,956 KB
testcase_15 AC 110 ms
85,120 KB
testcase_16 AC 108 ms
85,120 KB
testcase_17 AC 106 ms
85,120 KB
testcase_18 AC 551 ms
93,560 KB
testcase_19 AC 567 ms
93,448 KB
testcase_20 AC 922 ms
96,496 KB
testcase_21 AC 1,038 ms
100,480 KB
testcase_22 AC 1,093 ms
99,712 KB
testcase_23 AC 561 ms
94,248 KB
testcase_24 AC 984 ms
97,828 KB
testcase_25 AC 638 ms
93,568 KB
testcase_26 AC 677 ms
94,208 KB
testcase_27 AC 1,077 ms
99,324 KB
testcase_28 AC 637 ms
94,080 KB
testcase_29 AC 1,062 ms
97,028 KB
testcase_30 AC 765 ms
96,996 KB
testcase_31 AC 1,055 ms
98,032 KB
testcase_32 AC 679 ms
94,328 KB
testcase_33 AC 1,013 ms
97,272 KB
testcase_34 AC 656 ms
94,352 KB
testcase_35 AC 1,013 ms
97,148 KB
testcase_36 AC 117 ms
89,320 KB
testcase_37 AC 119 ms
89,216 KB
testcase_38 AC 122 ms
89,784 KB
testcase_39 AC 121 ms
89,596 KB
testcase_40 AC 122 ms
89,472 KB
testcase_41 AC 118 ms
89,088 KB
testcase_42 AC 130 ms
89,544 KB
testcase_43 AC 174 ms
90,752 KB
testcase_44 AC 288 ms
90,668 KB
testcase_45 AC 162 ms
90,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
    from heapq import heapify, heappop, heappush
    from bisect import bisect_left, bisect_right
    from copy import deepcopy
    import copy
    import random
    from collections import deque,Counter,defaultdict
    from itertools import permutations,combinations
    from decimal import Decimal,ROUND_HALF_UP
    #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
    from functools import lru_cache, reduce
    #@lru_cache(maxsize=None)
    from operator import add,sub,mul,xor,and_,or_,itemgetter
    INF = 10**18
    mod1 = 10**9+7
    mod2 = 998244353
    
    #DecimalならPython
    
    
    '''
    H,Wが小さい
    4重ループまでは回る
    最左上を赤で塗るとして、そこからどう平行移動するのかを全探索する
    マイナス方向が定義されてないのが問題
    '''
    
    H,W = map(int, input().split())
    S = [list(input()) for _ in range(H)]
    
    sy = -1
    sx = -1
    
    for i in range(H):
        for j in range(W):
            if S[i][j] == '#':
                sy = i
                sx = j
                break
    
    if sy == -1:
        print('NO')
        exit()
    
    for dy in range(-H,H):
        for dx in range(-W,W):
            
            if dy == dx == 0:
                continue
            
            T = deepcopy(S)
            f = True
            
            for i in range(H):
                for j in range(W):
                    if T[i][j] == '#':
                        if i+dy>=H or i+dy<0 or j+dx>=W or j+dx<0:
                            f = False
                            break
                        
                        if T[i+dy][j+dx] == '#':
                            T[i][j] = '.'
                            T[i+dy][j+dx] = '.'
                        else:
                            f = False
                            break
                
                else:
                    continue
                break
            
            if f:
                print('YES')
                exit()
    
    print('NO')
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0