結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
52,224 KB
testcase_01 AC 49 ms
52,224 KB
testcase_02 AC 61 ms
60,416 KB
testcase_03 AC 1,180 ms
81,340 KB
testcase_04 AC 1,288 ms
81,040 KB
testcase_05 AC 1,061 ms
80,276 KB
testcase_06 AC 1,212 ms
81,160 KB
testcase_07 AC 1,196 ms
81,156 KB
testcase_08 AC 1,396 ms
80,936 KB
testcase_09 AC 58 ms
64,768 KB
testcase_10 AC 133 ms
76,596 KB
testcase_11 AC 50 ms
61,056 KB
testcase_12 AC 41 ms
52,608 KB
testcase_13 AC 587 ms
78,036 KB
testcase_14 AC 58 ms
65,792 KB
testcase_15 AC 40 ms
52,736 KB
testcase_16 AC 52 ms
62,464 KB
testcase_17 AC 61 ms
65,792 KB
testcase_18 WA -
testcase_19 AC 40 ms
52,352 KB
testcase_20 AC 55 ms
63,872 KB
testcase_21 WA -
testcase_22 AC 163 ms
76,588 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 386 ms
77,000 KB
testcase_26 AC 135 ms
76,984 KB
testcase_27 AC 93 ms
76,416 KB
testcase_28 WA -
testcase_29 AC 40 ms
52,096 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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
        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