結果

問題 No.2928 Gridpath
ユーザー H20H20
提出日時 2024-10-12 16:27:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 888 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 78,588 KB
最終ジャッジ日時 2024-10-12 16:28:12
合計ジャッジ時間 2,638 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,016 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 AC 125 ms
77,056 KB
testcase_03 AC 37 ms
53,504 KB
testcase_04 AC 38 ms
53,760 KB
testcase_05 AC 44 ms
60,928 KB
testcase_06 AC 95 ms
76,928 KB
testcase_07 AC 39 ms
53,632 KB
testcase_08 AC 37 ms
53,760 KB
testcase_09 AC 58 ms
69,248 KB
testcase_10 AC 38 ms
54,400 KB
testcase_11 AC 36 ms
53,632 KB
testcase_12 AC 41 ms
54,016 KB
testcase_13 AC 44 ms
53,376 KB
testcase_14 AC 36 ms
54,016 KB
testcase_15 AC 146 ms
78,336 KB
testcase_16 AC 84 ms
76,672 KB
testcase_17 AC 94 ms
76,800 KB
testcase_18 AC 120 ms
76,800 KB
testcase_19 AC 164 ms
78,208 KB
testcase_20 AC 37 ms
53,376 KB
testcase_21 AC 124 ms
77,668 KB
testcase_22 AC 175 ms
78,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import sys
sys.setrecursionlimit(10**5)
H,W = map(int,input().split())
Si,Sj = map(int,input().split())
Gi,Gj = map(int,input().split())
ans = 0
S = set()
WW = 100
S.add(Si*WW+Sj)
D = collections.deque()
D.append([Si,Sj])
X = [1,0,-1,0]
Y = [0,1,0,-1]
ans = 0
def dfs():
    global ans
    if D[-1]==[Gi,Gj]:
        ans+=1
    else:
        i,j = D[-1]
        for x,y in zip(X,Y):
            ni = i+x
            nj = j+y
            if 1<=ni<=H and 1<=nj<=W and not ni*WW+nj in S:
                S.remove(i*WW+j)
                if not (ni*WW+nj+1 in S or (ni+1)*WW+nj in S or (ni-1)*WW+nj in S or ni*WW+nj-1 in S):
                    S.add(i*WW+j)
                    D.append([ni,nj])
                    S.add(ni*WW+nj)
                    dfs()
                    D.pop()
                    S.remove(ni*WW+nj)
                S.add(i*WW+j)

dfs()
print(ans)
0