結果

問題 No.2646 Cycle Maze
ユーザー 👑 rin204rin204
提出日時 2024-03-16 14:56:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 876 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 264,832 KB
最終ジャッジ日時 2024-09-30 03:59:58
合計ジャッジ時間 20,730 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 52 ms
60,672 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 44 ms
52,736 KB
testcase_11 AC 43 ms
52,480 KB
testcase_12 WA -
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 41 ms
51,840 KB
testcase_15 WA -
testcase_16 AC 41 ms
51,712 KB
testcase_17 WA -
testcase_18 AC 40 ms
52,096 KB
testcase_19 AC 42 ms
52,608 KB
testcase_20 AC 42 ms
52,736 KB
testcase_21 AC 42 ms
52,352 KB
testcase_22 AC 47 ms
58,112 KB
testcase_23 AC 41 ms
51,840 KB
testcase_24 AC 42 ms
52,096 KB
testcase_25 AC 647 ms
124,544 KB
testcase_26 AC 470 ms
109,568 KB
testcase_27 AC 476 ms
118,528 KB
testcase_28 AC 157 ms
83,712 KB
testcase_29 AC 674 ms
126,336 KB
testcase_30 AC 467 ms
109,568 KB
testcase_31 AC 347 ms
104,064 KB
testcase_32 AC 63 ms
64,896 KB
testcase_33 AC 100 ms
79,488 KB
testcase_34 AC 174 ms
94,080 KB
testcase_35 WA -
testcase_36 AC 96 ms
81,280 KB
testcase_37 AC 199 ms
99,840 KB
testcase_38 AC 133 ms
81,568 KB
testcase_39 AC 431 ms
108,800 KB
testcase_40 AC 261 ms
91,392 KB
testcase_41 AC 410 ms
104,320 KB
testcase_42 AC 123 ms
79,232 KB
testcase_43 AC 115 ms
78,720 KB
testcase_44 AC 210 ms
87,424 KB
testcase_45 AC 554 ms
137,472 KB
testcase_46 AC 675 ms
156,928 KB
testcase_47 AC 1,891 ms
248,320 KB
testcase_48 AC 546 ms
141,952 KB
testcase_49 AC 1,885 ms
252,288 KB
testcase_50 AC 682 ms
167,168 KB
testcase_51 AC 1,199 ms
211,456 KB
testcase_52 AC 1,318 ms
221,440 KB
testcase_53 AC 1,832 ms
264,704 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)]

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]
dj = [1, 0, -1, 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