結果

問題 No.2646 Cycle Maze
ユーザー nikoro256nikoro256
提出日時 2024-02-25 19:00:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,684 ms / 2,500 ms
コード長 1,057 bytes
コンパイル時間 628 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 158,200 KB
最終ジャッジ日時 2024-09-29 11:06:32
合計ジャッジ時間 13,859 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,456 KB
testcase_01 AC 35 ms
54,212 KB
testcase_02 AC 35 ms
54,128 KB
testcase_03 AC 43 ms
64,580 KB
testcase_04 AC 34 ms
55,228 KB
testcase_05 AC 36 ms
54,864 KB
testcase_06 AC 36 ms
55,556 KB
testcase_07 AC 36 ms
56,080 KB
testcase_08 AC 35 ms
54,272 KB
testcase_09 AC 37 ms
54,316 KB
testcase_10 AC 36 ms
55,396 KB
testcase_11 AC 38 ms
54,644 KB
testcase_12 AC 36 ms
54,304 KB
testcase_13 AC 35 ms
54,388 KB
testcase_14 AC 35 ms
54,232 KB
testcase_15 AC 35 ms
54,712 KB
testcase_16 AC 36 ms
54,476 KB
testcase_17 AC 36 ms
55,512 KB
testcase_18 AC 36 ms
54,912 KB
testcase_19 AC 37 ms
55,020 KB
testcase_20 AC 35 ms
55,240 KB
testcase_21 AC 35 ms
55,536 KB
testcase_22 AC 38 ms
60,496 KB
testcase_23 AC 36 ms
55,468 KB
testcase_24 AC 36 ms
55,056 KB
testcase_25 AC 80 ms
76,992 KB
testcase_26 AC 105 ms
77,256 KB
testcase_27 AC 209 ms
81,028 KB
testcase_28 AC 81 ms
77,008 KB
testcase_29 AC 76 ms
76,968 KB
testcase_30 AC 86 ms
77,004 KB
testcase_31 AC 48 ms
65,572 KB
testcase_32 AC 53 ms
68,552 KB
testcase_33 AC 88 ms
77,420 KB
testcase_34 AC 155 ms
79,640 KB
testcase_35 AC 142 ms
78,288 KB
testcase_36 AC 109 ms
77,536 KB
testcase_37 AC 89 ms
77,580 KB
testcase_38 AC 58 ms
71,940 KB
testcase_39 AC 98 ms
77,004 KB
testcase_40 AC 47 ms
64,756 KB
testcase_41 AC 109 ms
77,364 KB
testcase_42 AC 89 ms
76,888 KB
testcase_43 AC 67 ms
77,124 KB
testcase_44 AC 88 ms
76,772 KB
testcase_45 AC 417 ms
96,220 KB
testcase_46 AC 408 ms
97,376 KB
testcase_47 AC 79 ms
78,096 KB
testcase_48 AC 300 ms
88,884 KB
testcase_49 AC 371 ms
93,828 KB
testcase_50 AC 846 ms
119,812 KB
testcase_51 AC 1,565 ms
155,656 KB
testcase_52 AC 1,684 ms
157,452 KB
testcase_53 AC 1,609 ms
156,564 KB
testcase_54 AC 1,628 ms
158,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def bfs(s):
    dq=deque()
    dq.append([s,0])
    high=[10**9 for _ in range(N)]
    high[s]=0
    while len(dq)!=0:
        p,h=dq.popleft()
        for e in edge[p]:
            if  high[e]==10**9:
                dq.append([e,h+1])
                high[e]=h+1
    return high

H,W,T=map(int,input().split())
Sy,Sx=map(int,input().split())
Gy,Gx=map(int,input().split())
A=[]
for _ in range(H):
    tmp=input()
    A.append([int(tmp[i]) for i in range(W)])
dp=[[False]*W for _ in range(H)]
dp[Sy-1][Sx-1]=True
for i in range(T-1):
    ndp=[[False]*W for _ in range(H)]
    for j in range(H):
        for k in range(W):
            if dp[j][k]:
                for d1,d2 in [[1,0],[0,1],[-1,0],[0,-1],[0,0]]:
                    x=j+d1
                    y=k+d2
                    if 0<=x<H and 0<=y<W and (A[x][y]-i-1)%(A[x][y]+1)!=0:
                        ndp[x][y]=True
                        if x==Gy-1 and y==Gx-1:
                            print('Yes')
                            exit(0)
    dp=ndp
print('No')
0