結果

問題 No.2928 Gridpath
ユーザー 学ぶマン学ぶマン
提出日時 2024-10-26 17:43:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 1,485 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 77,316 KB
最終ジャッジ日時 2024-10-26 17:43:33
合計ジャッジ時間 3,686 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,984 KB
testcase_01 AC 40 ms
52,744 KB
testcase_02 AC 123 ms
76,232 KB
testcase_03 AC 38 ms
52,252 KB
testcase_04 AC 39 ms
52,564 KB
testcase_05 AC 47 ms
61,972 KB
testcase_06 AC 93 ms
76,224 KB
testcase_07 AC 39 ms
53,700 KB
testcase_08 AC 38 ms
53,184 KB
testcase_09 AC 84 ms
76,084 KB
testcase_10 AC 38 ms
53,116 KB
testcase_11 AC 39 ms
52,584 KB
testcase_12 AC 38 ms
53,512 KB
testcase_13 AC 37 ms
53,852 KB
testcase_14 AC 38 ms
53,052 KB
testcase_15 AC 164 ms
77,252 KB
testcase_16 AC 121 ms
77,128 KB
testcase_17 AC 115 ms
76,660 KB
testcase_18 AC 124 ms
77,316 KB
testcase_19 AC 115 ms
77,036 KB
testcase_20 AC 38 ms
54,056 KB
testcase_21 AC 107 ms
76,412 KB
testcase_22 AC 125 ms
76,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**8)
H, W = map(int, sys.stdin.readline().rstrip().split())
Si, Sj = map(int, sys.stdin.readline().rstrip().split())
Gi, Gj = map(int, sys.stdin.readline().rstrip().split())
Si -= 1
Sj -= 1
Gi -= 1
Gj -= 1

def check(i:int, j:int):
    return 0 <= i < H and 0 <= j < W

ans = 0
# 再帰的に経路を作る
def dfs(i:int, j:int, prei:int, prej:int, his:list):
    global ans
    # (i, j) に来た
    # このマスを踏むことが適格かを確認する
    for ii, jj in [(0, -1), (0, 1), (-1, 0), (1, 0)]:
        ni, nj = i+ii, j+jj
        if ni == prei and nj == prej: # 一個前のマス
            continue
        if check(ni, nj) and his[ni][nj]: # preマス以外で visited なマスがあったら不適格 この dfs は終了
            return
    
    # 上記チェックをくぐり抜けたら的確。マス(i, j) を踏んだことを記録
    his[i][j] = True

    # もしゴールに到着してたらカウントして終了
    if i == Gi and j == Gj:
        ans += 1
        return

    for ii, jj in [(0, -1), (0, 1), (-1, 0), (1, 0)]:
        ni, nj = i+ii, j+jj
        if ni == prei and nj == prej:
            continue
        if check(ni, nj): # 未踏のマスしかでてこない
            dfs(ni, nj, i, j, his)
            # 戻ってきたら his をロールバック
            his[ni][nj] = False
    return

history = [[False] * (W) for _ in range(H)]
dfs(Si, Sj, -1, -1, history)
print(ans)
0