結果

問題 No.179 塗り分け
ユーザー mkawa2mkawa2
提出日時 2019-12-30 17:12:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 545 ms / 3,000 ms
コード長 1,587 bytes
コンパイル時間 622 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 44,660 KB
最終ジャッジ日時 2024-07-23 15:04:34
合計ジャッジ時間 25,495 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
44,660 KB
testcase_01 AC 500 ms
44,424 KB
testcase_02 AC 499 ms
44,428 KB
testcase_03 AC 507 ms
44,548 KB
testcase_04 AC 507 ms
44,300 KB
testcase_05 AC 507 ms
44,420 KB
testcase_06 AC 506 ms
44,296 KB
testcase_07 AC 502 ms
44,296 KB
testcase_08 AC 507 ms
44,300 KB
testcase_09 AC 502 ms
44,296 KB
testcase_10 AC 501 ms
44,216 KB
testcase_11 AC 502 ms
44,432 KB
testcase_12 AC 545 ms
44,292 KB
testcase_13 AC 505 ms
44,292 KB
testcase_14 AC 500 ms
44,428 KB
testcase_15 AC 503 ms
44,548 KB
testcase_16 AC 497 ms
44,548 KB
testcase_17 AC 503 ms
44,300 KB
testcase_18 AC 502 ms
44,424 KB
testcase_19 AC 503 ms
44,560 KB
testcase_20 AC 520 ms
44,552 KB
testcase_21 AC 509 ms
44,296 KB
testcase_22 AC 513 ms
44,296 KB
testcase_23 AC 504 ms
44,352 KB
testcase_24 AC 508 ms
44,172 KB
testcase_25 AC 501 ms
44,304 KB
testcase_26 AC 500 ms
44,300 KB
testcase_27 AC 508 ms
44,352 KB
testcase_28 AC 504 ms
44,332 KB
testcase_29 AC 521 ms
44,296 KB
testcase_30 AC 516 ms
44,468 KB
testcase_31 AC 518 ms
44,420 KB
testcase_32 AC 512 ms
44,296 KB
testcase_33 AC 521 ms
44,296 KB
testcase_34 AC 509 ms
44,428 KB
testcase_35 AC 525 ms
44,444 KB
testcase_36 AC 504 ms
44,548 KB
testcase_37 AC 504 ms
44,420 KB
testcase_38 AC 505 ms
44,300 KB
testcase_39 AC 503 ms
44,300 KB
testcase_40 AC 503 ms
44,164 KB
testcase_41 AC 498 ms
44,316 KB
testcase_42 AC 506 ms
44,432 KB
testcase_43 AC 509 ms
44,304 KB
testcase_44 AC 505 ms
44,300 KB
testcase_45 AC 499 ms
44,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
# from math import *
from collections import *
from heapq import *
from random import *
from decimal import *
import numpy as np
import sys
import copy

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    def check(di,dj):
        for i in range(h):
            for j in range(w):
                if t[i][j] and first[i][j]:
                    if not 0<=i+di<h:return False
                    if not 0<=j+dj<w:return False
                    if not t[i+di][j+dj]:return False
                    first[i+di][j+dj]=False
        return True

    h, w = MI()
    t = [[c == "#" for c in input()] for _ in range(h)]
    si,sj=-1,-1
    for i in range(h):
        for j in range(w):
            if t[i][j]:
                if si==-1:
                    si,sj=i,j
                else:
                    first=[[True]*w for _ in range(h)]
                    if check(i-si,j-sj):
                        print("YES")
                        exit()
    print("NO")
main()
0