結果

問題 No.2646 Cycle Maze
ユーザー 👑 rin204rin204
提出日時 2024-03-16 14:57:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 888 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 264,332 KB
最終ジャッジ日時 2024-09-30 04:00:42
合計ジャッジ時間 18,720 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 34 ms
52,352 KB
testcase_03 AC 40 ms
60,416 KB
testcase_04 AC 44 ms
52,608 KB
testcase_05 AC 34 ms
52,352 KB
testcase_06 AC 33 ms
52,224 KB
testcase_07 WA -
testcase_08 AC 34 ms
51,584 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 34 ms
52,864 KB
testcase_11 AC 32 ms
52,096 KB
testcase_12 AC 33 ms
52,224 KB
testcase_13 AC 33 ms
52,096 KB
testcase_14 AC 33 ms
52,096 KB
testcase_15 WA -
testcase_16 AC 34 ms
52,096 KB
testcase_17 WA -
testcase_18 AC 34 ms
51,968 KB
testcase_19 AC 35 ms
52,224 KB
testcase_20 AC 37 ms
52,352 KB
testcase_21 AC 36 ms
52,096 KB
testcase_22 AC 39 ms
58,368 KB
testcase_23 AC 35 ms
51,968 KB
testcase_24 AC 34 ms
52,096 KB
testcase_25 AC 566 ms
124,160 KB
testcase_26 AC 402 ms
109,568 KB
testcase_27 AC 399 ms
118,528 KB
testcase_28 AC 130 ms
83,584 KB
testcase_29 AC 580 ms
126,464 KB
testcase_30 AC 395 ms
109,440 KB
testcase_31 AC 303 ms
104,320 KB
testcase_32 AC 50 ms
64,896 KB
testcase_33 AC 77 ms
79,488 KB
testcase_34 AC 135 ms
93,440 KB
testcase_35 WA -
testcase_36 AC 85 ms
81,664 KB
testcase_37 AC 177 ms
99,712 KB
testcase_38 AC 128 ms
81,536 KB
testcase_39 AC 414 ms
108,876 KB
testcase_40 AC 220 ms
91,136 KB
testcase_41 AC 371 ms
104,492 KB
testcase_42 AC 99 ms
79,616 KB
testcase_43 AC 92 ms
78,848 KB
testcase_44 AC 177 ms
86,912 KB
testcase_45 AC 464 ms
137,216 KB
testcase_46 AC 589 ms
156,672 KB
testcase_47 AC 1,759 ms
248,064 KB
testcase_48 AC 465 ms
141,696 KB
testcase_49 AC 1,691 ms
252,200 KB
testcase_50 AC 578 ms
166,528 KB
testcase_51 AC 1,086 ms
211,840 KB
testcase_52 AC 1,161 ms
221,184 KB
testcase_53 AC 1,649 ms
264,332 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, T = map(int, input().split())
si, sj = map(int, input().split())
gi, gj = map(int, input().split())
si -= 1
sj -= 1
gi -= 1
gj -= 1
A = [list(map(int, input())) for _ in range(h)]
T -= 1
dp = [False] * (h * w * (T + 1))


def f(t, i, j):
    return (t * h + i) * w + j


dp[f(0, si, sj)] = True

di = [0, 1, 0, -1, 0]
dj = [1, 0, -1, 0, 0]
for t in range(T):
    for i in range(h):
        for j in range(w):
            if not dp[f(t, i, j)]:
                continue
            for k in range(4):
                ni = i + di[k]
                nj = j + dj[k]
                if ni < 0 or ni >= h or nj < 0 or nj >= w:
                    continue
                b = (A[ni][nj] - t - 1) % (A[ni][nj] + 1)
                if b != 0:
                    dp[f(t + 1, ni, nj)] = True

if any(dp[f(t, gi, gj)] for t in range(T + 1)):
    print("Yes")
    exit()
else:
    print("No")
0