結果

問題 No.2412 YOU Grow Bigger!
ユーザー titiatitia
提出日時 2023-11-23 01:20:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,517 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 81,216 KB
最終ジャッジ日時 2024-09-26 07:44:30
合計ジャッジ時間 11,307 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 48 ms
60,672 KB
testcase_03 AC 1,169 ms
81,112 KB
testcase_04 AC 1,250 ms
81,216 KB
testcase_05 AC 797 ms
79,576 KB
testcase_06 AC 1,156 ms
80,512 KB
testcase_07 AC 1,189 ms
81,124 KB
testcase_08 AC 1,366 ms
80,572 KB
testcase_09 AC 57 ms
64,896 KB
testcase_10 AC 136 ms
76,704 KB
testcase_11 AC 49 ms
61,056 KB
testcase_12 AC 40 ms
52,480 KB
testcase_13 AC 162 ms
76,996 KB
testcase_14 AC 58 ms
65,664 KB
testcase_15 AC 41 ms
52,708 KB
testcase_16 AC 53 ms
62,336 KB
testcase_17 AC 60 ms
65,920 KB
testcase_18 AC 268 ms
76,884 KB
testcase_19 AC 40 ms
52,332 KB
testcase_20 AC 55 ms
63,744 KB
testcase_21 WA -
testcase_22 AC 153 ms
76,636 KB
testcase_23 AC 253 ms
77,084 KB
testcase_24 AC 726 ms
77,548 KB
testcase_25 WA -
testcase_26 AC 138 ms
77,104 KB
testcase_27 AC 94 ms
76,288 KB
testcase_28 AC 224 ms
77,044 KB
testcase_29 AC 40 ms
52,864 KB
testcase_30 AC 42 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W=map(int,input().split())
S=[list(input().strip()) for i in range(H)]

OK=[[0]*W for i in range(H)]
OK[2][2]=1
Q=[(2,2)]

while Q:
    x,y=Q.pop()

    for z,w in [(x+1,y),(x-1,y),(x,y+1),(x,y-1)]:
        if 2<=z<H and 2<=w<W and OK[z][w]==0:

            flag=1

            for x0 in range(3):
                for y0 in range(3):
                    if S[z-x0][w-y0]=="#":
                        flag=0
                        break

            if flag==1:
                OK[z][w]=1
                Q.append((z,w))

if OK[H-1][W-1]==0:
    print(0)
    exit()

for i in range(H):
    for j in range(W):
        if i<=2 and j<=2 :
            continue
        if i>=H-3 and j>=W-3:
            continue
        if S[i][j]=="#":
            continue
    
        S[i][j]="#"

        OK=[[0]*W for i in range(H)]
        OK[2][2]=1
        Q=[(2,2)]

        while Q:
            x,y=Q.pop()

            for z,w in [(x+1,y),(x-1,y),(x,y+1),(x,y-1)]:
                if 2<=z<H and 2<=w<W and OK[z][w]==0:

                    flag=1

                    for x0 in range(3):
                        for y0 in range(3):
                            if S[z-x0][w-y0]=="#":
                                flag=0
                                break

                    if flag==1:
                        OK[z][w]=1
                        Q.append((z,w))

        if OK[H-1][W-1]==0:
            print(1)
            exit()

        S[i][j]="."

print(2)
                
0