結果

問題 No.2646 Cycle Maze
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-25 19:13:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,362 ms / 2,500 ms
コード長 787 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 93,416 KB
最終ジャッジ日時 2024-09-29 11:07:30
合計ジャッジ時間 12,940 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,072 KB
testcase_01 AC 34 ms
53,512 KB
testcase_02 AC 35 ms
52,828 KB
testcase_03 AC 49 ms
65,672 KB
testcase_04 AC 32 ms
53,368 KB
testcase_05 AC 32 ms
53,532 KB
testcase_06 AC 33 ms
53,340 KB
testcase_07 AC 32 ms
53,244 KB
testcase_08 AC 32 ms
53,208 KB
testcase_09 AC 33 ms
54,332 KB
testcase_10 AC 38 ms
60,016 KB
testcase_11 AC 39 ms
60,084 KB
testcase_12 AC 33 ms
52,744 KB
testcase_13 AC 31 ms
52,384 KB
testcase_14 AC 32 ms
53,332 KB
testcase_15 AC 32 ms
52,836 KB
testcase_16 AC 32 ms
53,364 KB
testcase_17 AC 32 ms
53,252 KB
testcase_18 AC 31 ms
52,528 KB
testcase_19 AC 36 ms
59,700 KB
testcase_20 AC 34 ms
52,808 KB
testcase_21 AC 33 ms
52,812 KB
testcase_22 AC 41 ms
61,972 KB
testcase_23 AC 32 ms
53,556 KB
testcase_24 AC 32 ms
53,632 KB
testcase_25 AC 106 ms
76,948 KB
testcase_26 AC 125 ms
77,036 KB
testcase_27 AC 253 ms
78,296 KB
testcase_28 AC 89 ms
76,620 KB
testcase_29 AC 96 ms
76,684 KB
testcase_30 AC 111 ms
77,012 KB
testcase_31 AC 66 ms
74,428 KB
testcase_32 AC 64 ms
73,752 KB
testcase_33 AC 143 ms
77,404 KB
testcase_34 AC 218 ms
78,500 KB
testcase_35 AC 157 ms
77,108 KB
testcase_36 AC 142 ms
77,152 KB
testcase_37 AC 163 ms
78,380 KB
testcase_38 AC 67 ms
75,088 KB
testcase_39 AC 115 ms
76,900 KB
testcase_40 AC 63 ms
74,080 KB
testcase_41 AC 138 ms
77,084 KB
testcase_42 AC 85 ms
76,472 KB
testcase_43 AC 73 ms
76,780 KB
testcase_44 AC 96 ms
77,224 KB
testcase_45 AC 481 ms
83,220 KB
testcase_46 AC 544 ms
84,720 KB
testcase_47 AC 145 ms
78,344 KB
testcase_48 AC 398 ms
81,868 KB
testcase_49 AC 490 ms
83,980 KB
testcase_50 AC 880 ms
88,312 KB
testcase_51 AC 1,308 ms
93,416 KB
testcase_52 AC 1,346 ms
93,192 KB
testcase_53 AC 1,316 ms
93,344 KB
testcase_54 AC 1,362 ms
93,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit((1<<19)-1)
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')

H,W,T=map(int,input().split())
Sy,Sx=map(int,input().split())
Gy,Gx=map(int,input().split())
Sy-=1
Sx-=1
Gy-=1
Gx-=1
A=[list(map(int,input())) for i in range(H)]
dp=[[0]*W for i in range(H)]
dp[Sy][Sx]=1
for i in range(T-1):
    ndp=[[0]*W for i in range(H)]
    for j in range(H):
        for k in range(W):
            if (A[j][k]-i-1)%(A[j][k]+1):
                if dp[j][k]:
                    ndp[j][k]=1
                for my,mx in ((0,1),(1,0),(0,-1),(-1,0)):
                    if 0<=my+j<H and 0<=mx+k<W:
                        if dp[my+j][mx+k]:
                            ndp[j][k]=1
    if ndp[Gy][Gx]:
        print("Yes")
        exit()
    dp=ndp
print("No")
0