結果

問題 No.2646 Cycle Maze
ユーザー titiatitia
提出日時 2024-02-26 01:01:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 888 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 183,672 KB
最終ジャッジ日時 2024-09-29 11:31:08
合計ジャッジ時間 13,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,100 KB
testcase_01 AC 38 ms
53,092 KB
testcase_02 AC 35 ms
53,048 KB
testcase_03 AC 54 ms
68,480 KB
testcase_04 AC 36 ms
52,320 KB
testcase_05 AC 35 ms
54,052 KB
testcase_06 WA -
testcase_07 AC 33 ms
53,100 KB
testcase_08 AC 34 ms
52,584 KB
testcase_09 AC 34 ms
52,996 KB
testcase_10 AC 33 ms
53,100 KB
testcase_11 AC 34 ms
53,680 KB
testcase_12 WA -
testcase_13 AC 32 ms
53,564 KB
testcase_14 AC 32 ms
53,372 KB
testcase_15 AC 32 ms
54,316 KB
testcase_16 WA -
testcase_17 AC 32 ms
52,512 KB
testcase_18 WA -
testcase_19 AC 34 ms
54,184 KB
testcase_20 AC 34 ms
54,440 KB
testcase_21 AC 34 ms
52,900 KB
testcase_22 AC 40 ms
61,396 KB
testcase_23 AC 33 ms
53,152 KB
testcase_24 AC 32 ms
54,392 KB
testcase_25 AC 93 ms
77,200 KB
testcase_26 AC 120 ms
78,020 KB
testcase_27 AC 229 ms
81,964 KB
testcase_28 AC 82 ms
76,600 KB
testcase_29 AC 90 ms
77,188 KB
testcase_30 AC 96 ms
76,872 KB
testcase_31 AC 60 ms
74,328 KB
testcase_32 AC 62 ms
74,140 KB
testcase_33 AC 121 ms
78,144 KB
testcase_34 AC 199 ms
82,164 KB
testcase_35 AC 149 ms
78,088 KB
testcase_36 AC 129 ms
77,956 KB
testcase_37 AC 127 ms
78,564 KB
testcase_38 AC 66 ms
76,724 KB
testcase_39 AC 106 ms
77,056 KB
testcase_40 AC 55 ms
71,708 KB
testcase_41 AC 119 ms
77,964 KB
testcase_42 AC 97 ms
76,964 KB
testcase_43 AC 73 ms
76,604 KB
testcase_44 AC 88 ms
76,836 KB
testcase_45 AC 449 ms
104,760 KB
testcase_46 AC 488 ms
106,020 KB
testcase_47 AC 122 ms
80,932 KB
testcase_48 AC 373 ms
96,784 KB
testcase_49 AC 459 ms
104,424 KB
testcase_50 AC 899 ms
136,972 KB
testcase_51 AC 1,533 ms
183,192 KB
testcase_52 AC 1,544 ms
179,188 KB
testcase_53 AC 1,392 ms
183,672 KB
testcase_54 AC 1,552 ms
181,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W,T=map(int,input().split())
sx,sy=map(int,input().split())
gx,gy=map(int,input().split())

sx-=1
sy-=1
gx-=1
gy-=1

MAP=[input().strip() for i in range(H)]
OK=[[0]*W for i in range(H)]
OK[sx][sy]=1

for turns in range(1,T+1):
    A=[[0]*W for i in range(H)]
    
    for i in range(H):
        for j in range(W):
            if MAP[i][j]!="0":
                A[i][j]=(int(MAP[i][j])-turns)%(1+int(MAP[i][j]))

    #print("!",A)
    OK2=[[0]*W for i in range(H)]

    for i in range(H):
        for j in range(W):
            if OK[i][j]==1:
                for z,w in [(i,j),(i+1,j),(i-1,j),(i,j+1),(i,j-1)]:
                    if 0<=z<H and 0<=w<W and A[z][w]>0:
                        OK2[z][w]=1

    OK=OK2

    if OK[gx][gy]==1:
        print("Yes")
        exit()

    #print(OK)

print("No")
                        

    
            
0