結果

問題 No.2646 Cycle Maze
ユーザー mkawa2mkawa2
提出日時 2024-02-25 18:51:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,506 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 849,004 KB
最終ジャッジ日時 2024-09-29 11:06:16
合計ジャッジ時間 13,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,616 KB
testcase_01 AC 38 ms
54,548 KB
testcase_02 AC 37 ms
55,880 KB
testcase_03 AC 37 ms
55,056 KB
testcase_04 AC 36 ms
55,416 KB
testcase_05 AC 36 ms
55,592 KB
testcase_06 AC 37 ms
54,772 KB
testcase_07 AC 35 ms
55,280 KB
testcase_08 WA -
testcase_09 AC 38 ms
56,064 KB
testcase_10 AC 37 ms
55,388 KB
testcase_11 WA -
testcase_12 AC 37 ms
55,136 KB
testcase_13 WA -
testcase_14 AC 37 ms
54,776 KB
testcase_15 WA -
testcase_16 AC 36 ms
55,036 KB
testcase_17 AC 36 ms
54,904 KB
testcase_18 WA -
testcase_19 AC 39 ms
56,284 KB
testcase_20 AC 39 ms
56,636 KB
testcase_21 WA -
testcase_22 AC 38 ms
54,556 KB
testcase_23 AC 37 ms
55,840 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 429 ms
287,744 KB
testcase_27 AC 812 ms
485,832 KB
testcase_28 AC 259 ms
149,172 KB
testcase_29 AC 361 ms
294,800 KB
testcase_30 WA -
testcase_31 AC 263 ms
317,732 KB
testcase_32 AC 62 ms
90,492 KB
testcase_33 AC 465 ms
366,564 KB
testcase_34 AC 657 ms
503,496 KB
testcase_35 AC 541 ms
310,672 KB
testcase_36 AC 495 ms
345,096 KB
testcase_37 MLE -
testcase_38 AC 101 ms
112,964 KB
testcase_39 AC 370 ms
241,512 KB
testcase_40 AC 140 ms
180,648 KB
testcase_41 AC 483 ms
297,780 KB
testcase_42 AC 271 ms
131,244 KB
testcase_43 AC 112 ms
103,552 KB
testcase_44 AC 281 ms
132,676 KB
testcase_45 MLE -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

from collections import deque

L = 2520

h, w, T = LI()
si, sj = LI1()
gi, gj = LI1()
aa = [int(c)+1 for _ in range(h) for c in SI()]

sij = si*w+sj
gij = gi*w+gj

dist = [[-1]*L for _ in range(h*w)]
dist[sij][0] = 0
q = deque()
q.append((sij, 0))

def push():
    if dist[nij][nk] != -1 or (-d-1)%aa[nij]==0:return
    dist[nij][nk] = d+1
    q.append((nij, nk))

while q:
    ij, k = q.popleft()
    if ij == gij:
        print("Yes")
        exit()
    i, j = divmod(ij, w)
    d = dist[ij][k]
    if d+1 == T: continue
    nk = (k+1)%L
    if i:
        nij = ij-w
        push()
    if i+1 < h:
        nij = ij+w
        push()
    if j:
        nij = ij-1
        push()
    if j+1 < w:
        nij = ij+1
        push()

print("No")
0