結果

問題 No.2928 Gridpath
ユーザー nikoro256nikoro256
提出日時 2024-10-12 15:33:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,880 KB
最終ジャッジ日時 2024-10-12 15:33:31
合計ジャッジ時間 2,668 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 94 ms
76,544 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 49 ms
61,440 KB
testcase_06 AC 71 ms
73,216 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 39 ms
52,480 KB
testcase_09 AC 63 ms
67,840 KB
testcase_10 AC 48 ms
58,496 KB
testcase_11 AC 41 ms
52,608 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 38 ms
52,480 KB
testcase_15 AC 108 ms
75,904 KB
testcase_16 AC 89 ms
76,160 KB
testcase_17 AC 78 ms
75,776 KB
testcase_18 AC 85 ms
75,940 KB
testcase_19 AC 115 ms
76,880 KB
testcase_20 AC 39 ms
51,840 KB
testcase_21 AC 91 ms
75,776 KB
testcase_22 AC 106 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

H,W=map(int,input().split())
Si,Sj=map(int,input().split())
Gi,Gj=map(int,input().split())
Si-=1
Sj-=1
Gi-=1
Gj-=1

ds = [[1,0],[-1,0],[0,1],[0,-1]]
ans=0
use = set()
def solve(x, y):
    #print(x, y, use)
    global ans
    if x==Gi and y==Gj:
        ans+=1
        return 
    use.add((x,y))
    for d in ds:
        x_ = x+d[0]
        y_ = y+d[1]
        if 0<=x_<H and 0<=y_<W:
            if (x_, y_) in use:
                continue
            flag = True
            for d2 in ds:
                x2_ = x_+d2[0]
                y2_ = y_+d2[1]
                if not (x2_ == x and y2_ == y) and (x2_,y2_) in use:
                    flag = False
            if flag:
                solve(x_, y_)
    use.discard((x,y))
    
solve(Si,Sj)
print(ans)
0