結果

問題 No.2646 Cycle Maze
ユーザー mkawa2mkawa2
提出日時 2024-02-26 00:18:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,652 ms / 2,500 ms
コード長 1,275 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 156,356 KB
最終ジャッジ日時 2024-09-29 11:29:39
合計ジャッジ時間 14,913 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 34 ms
52,352 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 33 ms
52,608 KB
testcase_08 AC 32 ms
51,968 KB
testcase_09 AC 34 ms
52,608 KB
testcase_10 AC 35 ms
52,608 KB
testcase_11 AC 34 ms
52,480 KB
testcase_12 AC 34 ms
52,736 KB
testcase_13 AC 35 ms
52,608 KB
testcase_14 AC 34 ms
52,480 KB
testcase_15 AC 33 ms
52,480 KB
testcase_16 AC 35 ms
51,968 KB
testcase_17 AC 35 ms
51,840 KB
testcase_18 AC 34 ms
52,736 KB
testcase_19 AC 34 ms
52,096 KB
testcase_20 AC 34 ms
52,736 KB
testcase_21 AC 34 ms
52,096 KB
testcase_22 AC 34 ms
52,224 KB
testcase_23 AC 35 ms
52,608 KB
testcase_24 AC 34 ms
52,480 KB
testcase_25 AC 151 ms
77,292 KB
testcase_26 AC 182 ms
77,568 KB
testcase_27 AC 286 ms
85,676 KB
testcase_28 AC 172 ms
77,312 KB
testcase_29 AC 138 ms
77,008 KB
testcase_30 AC 158 ms
77,184 KB
testcase_31 AC 42 ms
60,032 KB
testcase_32 AC 49 ms
65,152 KB
testcase_33 AC 168 ms
77,568 KB
testcase_34 AC 231 ms
80,000 KB
testcase_35 AC 231 ms
77,952 KB
testcase_36 AC 200 ms
77,824 KB
testcase_37 AC 164 ms
77,832 KB
testcase_38 AC 71 ms
73,760 KB
testcase_39 AC 181 ms
77,312 KB
testcase_40 AC 41 ms
59,264 KB
testcase_41 AC 184 ms
77,568 KB
testcase_42 AC 185 ms
77,568 KB
testcase_43 AC 102 ms
76,032 KB
testcase_44 AC 184 ms
77,056 KB
testcase_45 AC 457 ms
108,396 KB
testcase_46 AC 469 ms
102,912 KB
testcase_47 AC 100 ms
77,696 KB
testcase_48 AC 333 ms
91,136 KB
testcase_49 AC 416 ms
98,364 KB
testcase_50 AC 865 ms
125,528 KB
testcase_51 AC 1,623 ms
150,184 KB
testcase_52 AC 1,650 ms
155,368 KB
testcase_53 AC 1,652 ms
156,356 KB
testcase_54 AC 1,624 ms
152,364 KB
権限があれば一括ダウンロードができます

ソースコード

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

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

def push(nij):
    if (-k-1)%aa[nij]==0:return
    now.add(nij)

now=set()
now.add(sij)
for k in range(1,T+1):
    pre,now=now,set()
    for ij in pre:
        if ij == gij:
            print("Yes")
            exit()
        i, j = divmod(ij, w)
        push(ij)
        if i:push(ij-w)
        if i+1 < h:push(ij+w)
        if j:push(ij-1)
        if j+1 < w:push(ij+1)

print("No")
0