結果

問題 No.179 塗り分け
ユーザー pajannatpajannat
提出日時 2021-04-14 00:12:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,440 ms / 3,000 ms
コード長 2,281 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 87,396 KB
最終ジャッジ日時 2024-06-30 02:56:32
合計ジャッジ時間 33,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 43 ms
54,008 KB
testcase_02 AC 58 ms
64,896 KB
testcase_03 AC 43 ms
54,344 KB
testcase_04 AC 58 ms
65,920 KB
testcase_05 AC 217 ms
77,312 KB
testcase_06 AC 150 ms
77,148 KB
testcase_07 AC 1,132 ms
86,068 KB
testcase_08 AC 1,094 ms
86,084 KB
testcase_09 AC 1,088 ms
85,656 KB
testcase_10 AC 1,358 ms
86,120 KB
testcase_11 AC 1,178 ms
84,612 KB
testcase_12 AC 1,183 ms
85,184 KB
testcase_13 AC 60 ms
68,736 KB
testcase_14 AC 60 ms
69,760 KB
testcase_15 AC 42 ms
53,376 KB
testcase_16 AC 42 ms
53,376 KB
testcase_17 AC 41 ms
53,376 KB
testcase_18 AC 1,347 ms
86,144 KB
testcase_19 AC 1,134 ms
85,144 KB
testcase_20 AC 1,250 ms
85,672 KB
testcase_21 AC 1,115 ms
86,244 KB
testcase_22 AC 1,317 ms
86,076 KB
testcase_23 AC 1,228 ms
86,072 KB
testcase_24 AC 1,147 ms
86,008 KB
testcase_25 AC 1,126 ms
86,020 KB
testcase_26 AC 1,158 ms
85,888 KB
testcase_27 AC 1,219 ms
85,888 KB
testcase_28 AC 1,343 ms
87,396 KB
testcase_29 AC 1,403 ms
86,284 KB
testcase_30 AC 1,397 ms
86,364 KB
testcase_31 AC 1,331 ms
85,968 KB
testcase_32 AC 1,383 ms
86,388 KB
testcase_33 AC 1,309 ms
86,008 KB
testcase_34 AC 1,440 ms
86,772 KB
testcase_35 AC 1,340 ms
85,928 KB
testcase_36 AC 42 ms
54,016 KB
testcase_37 AC 44 ms
54,512 KB
testcase_38 AC 42 ms
54,144 KB
testcase_39 AC 42 ms
53,760 KB
testcase_40 AC 52 ms
63,616 KB
testcase_41 AC 42 ms
53,760 KB
testcase_42 AC 43 ms
55,040 KB
testcase_43 AC 119 ms
77,156 KB
testcase_44 AC 235 ms
78,080 KB
testcase_45 AC 87 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    # 入力行数が多いとき。
    from sys import stdin
    # 数値として入力一つを読み込み
    H, W = map(int, stdin.readline().rstrip().split())
    d = [stdin.readline().rstrip() for i in range(H)]

    # 平行移動が成功したかどうかを判断するフラグ
    success_flg = False
    blue = [[False for w in range(W)] for h in range(H)]
    # リストblueの値を渡す
    import copy
    blue_tmp = copy.deepcopy(blue)

    # 平行移動パターンの全探索
    for i in range(H):
        for j in range(-W+1,W):
            # 移動なしパターンを除外
            if i == 0 and j == 0:
                pass
            # 左方向への移動を除外
            elif i == 0 and j < 0:
                pass
            else:
                # すべてのマスを平行移動する
                # 最後までflg=TrueならYESを出力
                flg = True
                # マスの色を初期化
                blue_tmp = copy.deepcopy(blue)
                for h in range(H):
                    for w in range(W):
                        # マスが白色または青色の場合は判定しない
                        if d[h][w] == "." or blue_tmp[h][w]:
                            pass
                        # 平行移動して範囲内の場合に判定
                        elif h+i<H and h+i>=0 and w+j<W and w+j>=0:
                            if d[h][w] == "#" and d[h+i][w+j] == "#":
                                blue_tmp[h+i][w+j] = True
                            # 平行移動先のマスが"#"でない場合はNG
                            else:
                                flg = False
                        # 平行移動して範囲外に出る場合はNG
                        else:
                            flg = False
                # すべてのマスを平行移動させて最後までNGなし
                # 1マス以上青マスがある
                import itertools
                if flg and (True in itertools.chain.from_iterable(blue_tmp)):
                    success_flg = True                   
                        
    if success_flg:
        print("YES")
    else:
        print("NO")

if __name__ == '__main__':
    main()
0