結果

問題 No.2928 Gridpath
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-12 15:50:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,880 KB
最終ジャッジ日時 2024-10-12 15:50:59
合計ジャッジ時間 2,354 ms
ジャッジサーバーID
(参考情報)
judge3 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 99 ms
76,168 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 35 ms
52,480 KB
testcase_05 AC 47 ms
61,952 KB
testcase_06 AC 88 ms
76,036 KB
testcase_07 AC 35 ms
52,480 KB
testcase_08 AC 34 ms
52,224 KB
testcase_09 AC 61 ms
70,528 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 34 ms
52,224 KB
testcase_12 AC 36 ms
52,224 KB
testcase_13 AC 37 ms
51,968 KB
testcase_14 AC 37 ms
52,480 KB
testcase_15 AC 124 ms
76,880 KB
testcase_16 AC 104 ms
75,980 KB
testcase_17 AC 83 ms
76,104 KB
testcase_18 AC 97 ms
76,260 KB
testcase_19 AC 100 ms
76,876 KB
testcase_20 AC 35 ms
52,352 KB
testcase_21 AC 95 ms
76,092 KB
testcase_22 AC 113 ms
76,232 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

def dfs(px,py):
  global a
  if (px,py)==(gx,gy):
    a+=1
  else:
    for dx,dy in [(1,0),(0,1),(-1,0),(0,-1)]:
      tx,ty=px+dx,py+dy
      if 0<=tx<H and 0<=ty<W and v[tx][ty]==0:
        f=1
        for dx2,dy2 in [(1,0),(0,1),(-1,0),(0,-1)]:
          ux,uy=tx+dx2,ty+dy2
          if 0<=ux<H and 0<=uy<W and v[ux][uy]!=0:
            if v[ux][uy]<v[px][py]:
              f=0
              break
        if f:
          v[tx][ty]=v[px][py]+1
          dfs(tx,ty)
  v[px][py]=0
  return

a=0
v=[[0]*W for i in range(H)]
v[sx][sy]=1
dfs(sx,sy)
print(a)
0