結果

問題 No.2646 Cycle Maze
ユーザー titiatitia
提出日時 2024-02-26 01:02:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,782 ms / 2,500 ms
コード長 886 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 183,972 KB
最終ジャッジ日時 2024-09-29 11:31:25
合計ジャッジ時間 15,478 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,504 KB
testcase_01 AC 38 ms
52,304 KB
testcase_02 AC 38 ms
52,936 KB
testcase_03 AC 59 ms
67,816 KB
testcase_04 AC 38 ms
53,316 KB
testcase_05 AC 39 ms
53,428 KB
testcase_06 AC 39 ms
53,352 KB
testcase_07 AC 42 ms
52,588 KB
testcase_08 AC 40 ms
52,280 KB
testcase_09 AC 40 ms
52,400 KB
testcase_10 AC 39 ms
53,104 KB
testcase_11 AC 40 ms
52,884 KB
testcase_12 AC 40 ms
54,012 KB
testcase_13 AC 39 ms
52,348 KB
testcase_14 AC 38 ms
52,752 KB
testcase_15 AC 39 ms
52,616 KB
testcase_16 AC 39 ms
53,224 KB
testcase_17 AC 38 ms
52,412 KB
testcase_18 AC 38 ms
52,556 KB
testcase_19 AC 39 ms
54,444 KB
testcase_20 AC 39 ms
52,892 KB
testcase_21 AC 39 ms
52,744 KB
testcase_22 AC 47 ms
61,844 KB
testcase_23 AC 38 ms
54,220 KB
testcase_24 AC 39 ms
53,376 KB
testcase_25 AC 108 ms
76,672 KB
testcase_26 AC 135 ms
77,668 KB
testcase_27 AC 269 ms
81,812 KB
testcase_28 AC 97 ms
76,276 KB
testcase_29 AC 104 ms
76,788 KB
testcase_30 AC 107 ms
76,896 KB
testcase_31 AC 64 ms
73,512 KB
testcase_32 AC 69 ms
73,384 KB
testcase_33 AC 139 ms
78,248 KB
testcase_34 AC 231 ms
82,200 KB
testcase_35 AC 175 ms
78,292 KB
testcase_36 AC 150 ms
77,716 KB
testcase_37 AC 146 ms
78,256 KB
testcase_38 AC 75 ms
76,324 KB
testcase_39 AC 121 ms
76,624 KB
testcase_40 AC 61 ms
70,132 KB
testcase_41 AC 138 ms
77,372 KB
testcase_42 AC 104 ms
76,776 KB
testcase_43 AC 83 ms
76,460 KB
testcase_44 AC 100 ms
76,684 KB
testcase_45 AC 537 ms
104,396 KB
testcase_46 AC 565 ms
106,116 KB
testcase_47 AC 137 ms
80,996 KB
testcase_48 AC 412 ms
96,484 KB
testcase_49 AC 506 ms
104,008 KB
testcase_50 AC 1,016 ms
137,180 KB
testcase_51 AC 1,759 ms
182,580 KB
testcase_52 AC 1,782 ms
178,936 KB
testcase_53 AC 1,626 ms
183,972 KB
testcase_54 AC 1,769 ms
181,132 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):
    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