結果

問題 No.2928 Gridpath
ユーザー amesyuamesyu
提出日時 2024-09-03 23:41:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 77,508 KB
最終ジャッジ日時 2024-09-04 00:21:49
合計ジャッジ時間 2,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,880 KB
testcase_01 AC 38 ms
54,068 KB
testcase_02 AC 125 ms
76,864 KB
testcase_03 AC 38 ms
53,928 KB
testcase_04 AC 38 ms
52,612 KB
testcase_05 AC 51 ms
62,872 KB
testcase_06 AC 99 ms
76,012 KB
testcase_07 AC 38 ms
53,220 KB
testcase_08 AC 38 ms
54,188 KB
testcase_09 AC 75 ms
76,284 KB
testcase_10 AC 42 ms
59,432 KB
testcase_11 AC 37 ms
53,536 KB
testcase_12 AC 38 ms
53,448 KB
testcase_13 AC 37 ms
53,620 KB
testcase_14 AC 38 ms
52,664 KB
testcase_15 AC 153 ms
77,508 KB
testcase_16 AC 112 ms
76,224 KB
testcase_17 AC 103 ms
76,400 KB
testcase_18 AC 98 ms
76,356 KB
testcase_19 AC 123 ms
76,724 KB
testcase_20 AC 38 ms
52,200 KB
testcase_21 AC 106 ms
76,444 KB
testcase_22 AC 126 ms
76,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())

si, sj = map(lambda x: int(x) - 1, input().split())
gi, gj = map(lambda x: int(x) - 1, input().split())

dx4 = [1, 0, -1, 0]
dy4 = [0, 1, 0, -1]

# 0 = blank, 1 = wall
ans = 0
grid = [[0] * m for _ in range(n)]

def valid(i, j):
    if not (0 <= i < n): return False
    if not (0 <= j < m): return False
    return True

def solve(i, j):
    global ans

    if i == gi and j == gj:
        ans += 1
        return

    for k in range(4):
        ni, nj = i + dx4[k], j + dy4[k]
        if not valid(ni, nj): continue
        if grid[ni][nj]: continue
        neighbor = 0

        for l in range(4):
            pi, pj = ni + dx4[l], nj + dy4[l]
            if not valid(pi, pj): continue
            if grid[pi][pj]: neighbor += 1

        if neighbor == 1:
            grid[ni][nj] = 1
            solve(ni, nj)
            grid[ni][nj] = 0

grid[si][sj] = 1
solve(si, sj)
print(ans)
0