結果

問題 No.2646 Cycle Maze
ユーザー mkawa2mkawa2
提出日時 2024-02-25 23:42:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,526 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 327,252 KB
最終ジャッジ日時 2024-09-29 11:27:35
合計ジャッジ時間 21,452 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,332 KB
testcase_01 AC 39 ms
54,180 KB
testcase_02 AC 41 ms
54,560 KB
testcase_03 AC 38 ms
54,052 KB
testcase_04 AC 37 ms
54,732 KB
testcase_05 AC 37 ms
55,100 KB
testcase_06 AC 36 ms
54,856 KB
testcase_07 WA -
testcase_08 AC 41 ms
54,600 KB
testcase_09 AC 41 ms
55,056 KB
testcase_10 AC 40 ms
55,232 KB
testcase_11 AC 41 ms
54,440 KB
testcase_12 AC 37 ms
55,112 KB
testcase_13 AC 37 ms
54,612 KB
testcase_14 AC 38 ms
56,072 KB
testcase_15 WA -
testcase_16 AC 39 ms
55,548 KB
testcase_17 WA -
testcase_18 AC 38 ms
54,972 KB
testcase_19 AC 37 ms
55,528 KB
testcase_20 AC 38 ms
55,008 KB
testcase_21 AC 37 ms
55,272 KB
testcase_22 AC 38 ms
54,924 KB
testcase_23 AC 38 ms
54,532 KB
testcase_24 AC 37 ms
55,296 KB
testcase_25 AC 234 ms
84,772 KB
testcase_26 AC 425 ms
95,044 KB
testcase_27 AC 995 ms
154,720 KB
testcase_28 AC 253 ms
84,636 KB
testcase_29 AC 209 ms
82,880 KB
testcase_30 AC 294 ms
86,844 KB
testcase_31 AC 45 ms
62,636 KB
testcase_32 AC 50 ms
63,424 KB
testcase_33 AC 310 ms
88,280 KB
testcase_34 AC 696 ms
119,316 KB
testcase_35 WA -
testcase_36 AC 428 ms
95,704 KB
testcase_37 AC 278 ms
86,580 KB
testcase_38 AC 77 ms
77,384 KB
testcase_39 AC 392 ms
93,732 KB
testcase_40 AC 44 ms
62,148 KB
testcase_41 AC 491 ms
103,080 KB
testcase_42 AC 350 ms
90,208 KB
testcase_43 AC 108 ms
78,896 KB
testcase_44 AC 358 ms
90,152 KB
testcase_45 AC 1,686 ms
297,260 KB
testcase_46 AC 1,755 ms
284,032 KB
testcase_47 AC 125 ms
79,664 KB
testcase_48 AC 1,229 ms
203,288 KB
testcase_49 AC 1,477 ms
238,208 KB
testcase_50 TLE -
testcase_51 TLE -
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,defaultdict

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 = defaultdict(lambda :-1)
dist[sij,0] = 0
q = deque()
q.append((sij, 0))

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

while q:
    # print(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