結果

問題 No.2928 Gridpath
ユーザー loop0919loop0919
提出日時 2024-09-13 01:03:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,106 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 76,740 KB
最終ジャッジ日時 2024-09-13 01:03:34
合計ジャッジ時間 3,135 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,264 KB
testcase_01 AC 37 ms
53,116 KB
testcase_02 AC 97 ms
76,480 KB
testcase_03 AC 36 ms
53,368 KB
testcase_04 AC 38 ms
52,964 KB
testcase_05 AC 43 ms
60,316 KB
testcase_06 AC 76 ms
76,140 KB
testcase_07 AC 38 ms
53,216 KB
testcase_08 AC 37 ms
53,316 KB
testcase_09 AC 64 ms
69,908 KB
testcase_10 AC 38 ms
54,364 KB
testcase_11 AC 40 ms
52,656 KB
testcase_12 AC 37 ms
52,616 KB
testcase_13 AC 36 ms
53,912 KB
testcase_14 AC 36 ms
52,816 KB
testcase_15 AC 89 ms
76,140 KB
testcase_16 AC 93 ms
76,740 KB
testcase_17 AC 84 ms
76,448 KB
testcase_18 AC 93 ms
76,372 KB
testcase_19 AC 89 ms
76,572 KB
testcase_20 AC 37 ms
52,268 KB
testcase_21 AC 88 ms
76,332 KB
testcase_22 AC 94 ms
76,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**5)

ways = set([(0, 1), (0, -1), (1, 0), (-1, 0)])

H, W = map(int, input().split())
S_i, S_j = map(lambda x: int(x) - 1, input().split())
G_i, G_j = map(lambda x: int(x) - 1, input().split())

grid = [[0 for _ in range(W)] for _ in range(H)]

ans = 0


def dfs(now_i, now_j):
    global ans

    if now_i == G_i and now_j == G_j:
        ans += 1
        return

    grid[now_i][now_j] += 1
    for di, dj in ways:
        next_i, next_j = now_i + di, now_j + dj
        if next_i < 0 or next_i >= H or next_j < 0 or next_j >= W:
            continue
        grid[next_i][next_j] += 1

    for di, dj in ways:
        next_i, next_j = now_i + di, now_j + dj
        if next_i < 0 or next_i >= H or next_j < 0 or next_j >= W:
            continue
        if grid[next_i][next_j] <= 1:
            dfs(next_i, next_j)

    grid[now_i][now_j] -= 1
    for di, dj in ways:
        next_i, next_j = now_i + di, now_j + dj
        if next_i < 0 or next_i >= H or next_j < 0 or next_j >= W:
            continue
        grid[next_i][next_j] -= 1


dfs(S_i, S_j)

print(ans)
0