結果

問題 No.2646 Cycle Maze
ユーザー nikoro256nikoro256
提出日時 2024-02-25 18:48:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,116 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 282,812 KB
最終ジャッジ日時 2024-09-29 11:06:01
合計ジャッジ時間 18,105 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,076 KB
testcase_01 AC 42 ms
54,172 KB
testcase_02 AC 43 ms
54,720 KB
testcase_03 AC 49 ms
64,056 KB
testcase_04 AC 42 ms
55,292 KB
testcase_05 AC 39 ms
54,628 KB
testcase_06 AC 38 ms
55,188 KB
testcase_07 AC 38 ms
55,372 KB
testcase_08 AC 38 ms
54,808 KB
testcase_09 AC 40 ms
54,664 KB
testcase_10 AC 47 ms
64,124 KB
testcase_11 AC 40 ms
55,444 KB
testcase_12 AC 38 ms
54,596 KB
testcase_13 AC 39 ms
54,312 KB
testcase_14 AC 39 ms
54,452 KB
testcase_15 AC 39 ms
55,408 KB
testcase_16 AC 39 ms
54,512 KB
testcase_17 AC 38 ms
54,140 KB
testcase_18 AC 38 ms
54,000 KB
testcase_19 AC 44 ms
55,792 KB
testcase_20 AC 42 ms
55,124 KB
testcase_21 AC 40 ms
55,252 KB
testcase_22 AC 45 ms
60,656 KB
testcase_23 AC 41 ms
54,664 KB
testcase_24 AC 41 ms
54,236 KB
testcase_25 AC 190 ms
127,592 KB
testcase_26 AC 191 ms
113,320 KB
testcase_27 AC 315 ms
122,028 KB
testcase_28 AC 104 ms
84,484 KB
testcase_29 AC 187 ms
132,724 KB
testcase_30 AC 159 ms
113,144 KB
testcase_31 AC 96 ms
88,100 KB
testcase_32 AC 57 ms
68,628 KB
testcase_33 AC 117 ms
85,752 KB
testcase_34 AC 204 ms
95,568 KB
testcase_35 AC 208 ms
108,632 KB
testcase_36 AC 136 ms
85,540 KB
testcase_37 AC 141 ms
101,992 KB
testcase_38 AC 83 ms
83,216 KB
testcase_39 AC 173 ms
112,556 KB
testcase_40 AC 91 ms
87,732 KB
testcase_41 AC 174 ms
107,552 KB
testcase_42 AC 107 ms
82,148 KB
testcase_43 AC 133 ms
80,144 KB
testcase_44 AC 128 ms
91,368 KB
testcase_45 AC 555 ms
141,172 KB
testcase_46 AC 621 ms
161,384 KB
testcase_47 AC 415 ms
258,716 KB
testcase_48 AC 403 ms
145,820 KB
testcase_49 AC 869 ms
263,412 KB
testcase_50 AC 990 ms
172,596 KB
testcase_51 AC 2,300 ms
220,444 KB
testcase_52 AC 2,379 ms
230,432 KB
testcase_53 TLE -
testcase_54 -- -
権限があれば一括ダウンロードができます

ソースコード

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)] for _ in range(T)]
dp[0][Sy-1][Sx-1]=True
for i in range(T-1):
    for j in range(H):
        for k in range(W):
            if dp[i][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:
                        dp[i+1][x][y]=True
                        if x==Gy and y==Gx:
                            print('Yes')
                            exit(0)
for i in range(T):
    if dp[i][Gy-1][Gx-1]:
        print('Yes')
        exit(0)
print('No')
0