結果

問題 No.2646 Cycle Maze
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-25 19:12:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 785 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 93,312 KB
最終ジャッジ日時 2024-09-29 11:07:16
合計ジャッジ時間 13,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,352 KB
testcase_01 AC 33 ms
52,480 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 48 ms
65,920 KB
testcase_04 AC 33 ms
52,480 KB
testcase_05 AC 32 ms
51,968 KB
testcase_06 WA -
testcase_07 AC 32 ms
52,352 KB
testcase_08 AC 34 ms
52,096 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 40 ms
58,624 KB
testcase_11 AC 37 ms
59,008 KB
testcase_12 WA -
testcase_13 AC 34 ms
52,480 KB
testcase_14 AC 33 ms
51,840 KB
testcase_15 AC 34 ms
52,096 KB
testcase_16 WA -
testcase_17 AC 34 ms
51,712 KB
testcase_18 WA -
testcase_19 AC 38 ms
59,136 KB
testcase_20 AC 34 ms
52,352 KB
testcase_21 AC 34 ms
52,480 KB
testcase_22 AC 42 ms
60,800 KB
testcase_23 AC 35 ms
51,968 KB
testcase_24 AC 33 ms
52,224 KB
testcase_25 AC 102 ms
76,544 KB
testcase_26 AC 120 ms
76,672 KB
testcase_27 AC 248 ms
77,824 KB
testcase_28 AC 88 ms
76,488 KB
testcase_29 AC 97 ms
76,924 KB
testcase_30 AC 110 ms
77,064 KB
testcase_31 AC 67 ms
73,984 KB
testcase_32 AC 65 ms
73,472 KB
testcase_33 AC 146 ms
77,440 KB
testcase_34 AC 230 ms
78,080 KB
testcase_35 AC 158 ms
76,928 KB
testcase_36 AC 146 ms
76,840 KB
testcase_37 AC 165 ms
78,208 KB
testcase_38 AC 70 ms
74,624 KB
testcase_39 AC 120 ms
76,564 KB
testcase_40 AC 63 ms
72,704 KB
testcase_41 AC 136 ms
76,752 KB
testcase_42 AC 87 ms
76,416 KB
testcase_43 AC 74 ms
76,416 KB
testcase_44 AC 97 ms
76,928 KB
testcase_45 AC 478 ms
82,816 KB
testcase_46 AC 553 ms
84,224 KB
testcase_47 AC 145 ms
78,464 KB
testcase_48 AC 423 ms
81,664 KB
testcase_49 AC 501 ms
83,840 KB
testcase_50 AC 1,013 ms
87,808 KB
testcase_51 AC 1,336 ms
92,672 KB
testcase_52 AC 1,374 ms
92,800 KB
testcase_53 AC 1,338 ms
93,312 KB
testcase_54 AC 1,370 ms
92,928 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):
    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