結果

問題 No.2928 Gridpath
ユーザー kusirakusirakusirakusira
提出日時 2024-09-04 11:56:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 1,100 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-09-04 11:56:57
合計ジャッジ時間 3,292 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,656 KB
testcase_01 AC 37 ms
53,008 KB
testcase_02 AC 165 ms
77,252 KB
testcase_03 AC 35 ms
52,824 KB
testcase_04 AC 36 ms
52,592 KB
testcase_05 AC 49 ms
63,468 KB
testcase_06 AC 88 ms
76,304 KB
testcase_07 AC 36 ms
52,532 KB
testcase_08 AC 37 ms
53,060 KB
testcase_09 AC 80 ms
76,268 KB
testcase_10 AC 39 ms
59,012 KB
testcase_11 AC 36 ms
53,416 KB
testcase_12 AC 36 ms
52,132 KB
testcase_13 AC 35 ms
53,284 KB
testcase_14 AC 35 ms
53,136 KB
testcase_15 AC 126 ms
77,696 KB
testcase_16 AC 124 ms
76,808 KB
testcase_17 AC 100 ms
76,952 KB
testcase_18 AC 117 ms
76,812 KB
testcase_19 AC 150 ms
77,332 KB
testcase_20 AC 35 ms
52,328 KB
testcase_21 AC 142 ms
77,020 KB
testcase_22 AC 137 ms
76,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
sx,sy =  map(int,input().split())
gx,gy =  map(int,input().split())
sx -= 1
sy -= 1
gx -= 1
gy -= 1

# ↑→↓←
dx = [-1,0,1,0]
dy = [0,1,0,-1]
used = [[0 for j in range(w)]for i in range(h)]
used[sx][sy] = 1
ans = 0
def isvalid(x,y):
    return 0<=x<h and 0<=y<w

def canmove(x,y):
    if(used[x][y]):
        return
    
    cnt = 0
    for k in range(4):
        nx = x + dx[k]
        ny = y + dy[k]
        if(isvalid(nx, ny)):
            cnt += used[nx][ny]
    
    return cnt <= 1
    
def dfs(x,y, used):
    global ans
    if(x == gx and y == gy):
        ans += 1
        return
    
    for k in range(4):
        nx = x + dx[k]
        ny = y + dy[k]
        if(isvalid(nx, ny)):
            if(canmove(nx, ny)):
                used[nx][ny] = 1
                # for i in range(h):
                #     for j in range(w):
                #         print(used[i][j], end=" ")
                #     print()
                # print("---")
                dfs(nx, ny, used)
                used[nx][ny] = 0
                

dfs(sx, sy, used)
print(ans)
0