結果

問題 No.2928 Gridpath
ユーザー detteiuudetteiuu
提出日時 2024-10-12 16:02:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,277 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 94,208 KB
最終ジャッジ日時 2024-10-12 16:02:44
合計ジャッジ時間 3,738 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,520 KB
testcase_01 AC 46 ms
54,144 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

H, W = map(int, input().split())
sh, sw = map(int, input().split())
gh, gw = map(int, input().split())
sh, sw, gh, gw = sh-1, sw-1, gh-1, gw-1

def judge():
    que = deque()
    que.append((gh, gw))
    dist = [[-1]*W for _ in range(H)]
    dist[gh][gw] = visited[gh][gw]
    while que:
        h, w = que.popleft()
        if [h, w] == [sh, sw]:
            return True
        for dh, dw in direction:
            nh, nw = h+dh, w+dw
            if not (0<=nh<H and 0<=nw<W):
                continue
            if visited[nh][nw] != -1 and visited[h][w]-1 > visited[nh][nw]:
                return False
            if visited[nh][nw] != -1 and dist[nh][nw] == -1:
                dist[nh][nw] = dist[h][w]-1
                que.append((nh, nw))

def dfs(h, w, cnt):
    visited[h][w] = cnt
    cnt += 1
    if [h, w] == [gh, gw]:
        if judge():
            global ans
            ans += 1
        visited[h][w] = -1
        return
    for dh, dw in direction:
        nh, nw = h+dh, w+dw
        if 0<=nh<H and 0<=nw<W and visited[nh][nw] == -1:
            dfs(nh, nw, cnt)
    cnt -= 1
    visited[h][w] = -1 
    return

visited = [[-1]*W for _ in range(H)]
ans = 0
direction = [(-1,0),(0,1),(1,0),(0,-1)]
dfs(sh, sw, 0)

print(ans)
0