結果

問題 No.2646 Cycle Maze
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-25 19:10:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 724 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 100,608 KB
最終ジャッジ日時 2024-09-29 11:07:00
合計ジャッジ時間 13,858 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,400 KB
testcase_01 AC 34 ms
53,008 KB
testcase_02 AC 34 ms
53,172 KB
testcase_03 AC 54 ms
66,912 KB
testcase_04 AC 38 ms
53,776 KB
testcase_05 AC 36 ms
52,792 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
52,468 KB
testcase_09 AC 37 ms
52,544 KB
testcase_10 AC 40 ms
59,244 KB
testcase_11 AC 40 ms
59,976 KB
testcase_12 WA -
testcase_13 AC 36 ms
52,784 KB
testcase_14 AC 36 ms
53,144 KB
testcase_15 WA -
testcase_16 AC 37 ms
52,868 KB
testcase_17 WA -
testcase_18 AC 36 ms
53,740 KB
testcase_19 AC 41 ms
59,588 KB
testcase_20 AC 37 ms
52,936 KB
testcase_21 AC 36 ms
53,168 KB
testcase_22 AC 46 ms
61,360 KB
testcase_23 AC 36 ms
53,108 KB
testcase_24 AC 37 ms
53,332 KB
testcase_25 AC 115 ms
76,848 KB
testcase_26 AC 128 ms
76,788 KB
testcase_27 AC 248 ms
78,284 KB
testcase_28 AC 91 ms
76,888 KB
testcase_29 AC 101 ms
76,616 KB
testcase_30 AC 107 ms
76,928 KB
testcase_31 AC 72 ms
74,032 KB
testcase_32 AC 66 ms
71,596 KB
testcase_33 AC 150 ms
77,104 KB
testcase_34 AC 230 ms
78,176 KB
testcase_35 WA -
testcase_36 AC 150 ms
77,156 KB
testcase_37 AC 173 ms
78,024 KB
testcase_38 AC 67 ms
72,004 KB
testcase_39 AC 118 ms
76,688 KB
testcase_40 AC 72 ms
74,588 KB
testcase_41 AC 141 ms
76,920 KB
testcase_42 AC 88 ms
76,528 KB
testcase_43 AC 72 ms
74,636 KB
testcase_44 AC 96 ms
76,828 KB
testcase_45 AC 471 ms
82,744 KB
testcase_46 AC 534 ms
83,520 KB
testcase_47 AC 166 ms
78,620 KB
testcase_48 AC 421 ms
82,288 KB
testcase_49 AC 490 ms
82,996 KB
testcase_50 AC 874 ms
88,068 KB
testcase_51 AC 1,247 ms
93,360 KB
testcase_52 AC 1,234 ms
92,816 KB
testcase_53 AC 1,245 ms
92,896 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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