結果

問題 No.2928 Gridpath
ユーザー rlangevinrlangevin
提出日時 2024-11-05 08:54:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 933 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-05 08:54:53
合計ジャッジ時間 2,693 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 85 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 40 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 34 ms
10,880 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 33 ms
10,752 KB
testcase_13 AC 38 ms
10,880 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 58 ms
10,624 KB
testcase_16 AC 70 ms
10,624 KB
testcase_17 AC 46 ms
10,624 KB
testcase_18 AC 71 ms
10,752 KB
testcase_19 AC 71 ms
10,880 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 85 ms
10,752 KB
testcase_22 AC 80 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)

dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
def check(px, py):
    cnt = 0
    for k in range(4):
        x, y = px + dx[k], py + dy[k]
        if x < 0 or x > H - 1 or y < 0 or y > W - 1:
            continue
        cnt += seen[x][y]
    return cnt

def dfs(x, y):
    global ans
    if x == gx and y == gy:
        ans += 1
        return 
    for k in range(4):
        nx, ny = x + dx[k], y + dy[k]
        if nx < 0 or nx > H - 1 or ny < 0 or ny > W - 1:
            continue
        if seen[nx][ny]:
            continue
        if check(nx, ny) >= 2:
            continue
        seen[nx][ny] = 1
        dfs(nx, ny)
        seen[nx][ny] = 0
    return 

H, W = map(int, input().split())
sx, sy = map(int, input().split())
gx, gy = map(int, input().split())
seen = [[0] * W for _ in range(H)]

ans = 0
sx, sy, gx, gy = sx - 1, sy - 1, gx - 1, gy - 1
seen[sx][sy] = 1
dfs(sx, sy)

print(ans)
0