結果

問題 No.2928 Gridpath
ユーザー titiatitia
提出日時 2024-11-18 02:53:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 756 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 36,608 KB
最終ジャッジ日時 2024-11-18 02:53:10
合計ジャッジ時間 7,352 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 756 ms
36,596 KB
testcase_03 AC 33 ms
10,880 KB
testcase_04 AC 33 ms
10,880 KB
testcase_05 AC 40 ms
11,136 KB
testcase_06 AC 130 ms
14,592 KB
testcase_07 AC 33 ms
10,880 KB
testcase_08 AC 32 ms
11,008 KB
testcase_09 AC 83 ms
12,800 KB
testcase_10 AC 36 ms
11,136 KB
testcase_11 AC 32 ms
11,008 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 33 ms
10,880 KB
testcase_15 AC 346 ms
22,836 KB
testcase_16 AC 529 ms
29,228 KB
testcase_17 AC 302 ms
21,452 KB
testcase_18 AC 528 ms
29,192 KB
testcase_19 AC 727 ms
36,608 KB
testcase_20 AC 31 ms
11,008 KB
testcase_21 AC 722 ms
36,592 KB
testcase_22 AC 735 ms
36,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
from collections import Counter

H,W=map(int,input().split())
x,y=map(int,input().split())
z,w=map(int,input().split())

LIST=[(0,1),(0,-1),(1,0),(-1,0)]

Q=[[(((x,y),),x,y),1]]
DP=Counter()
DP[(((x,y),),x,y)]=1

while Q:
    #print(Q[-1])
    X,count=heappop(Q)
    S,x,y=X
    #print(S,x,y)

    if DP[S,x,y]!=count:
        continue

    for px,py in LIST:
        if 1<=x+px<=H and 1<=y+py<=W:
            if (x+px,y+py) in S:
                continue
            S2=list(S)
            for px2,py2 in LIST:
                S2.append((x+px2,y+py2))
            X=(tuple(sorted(S2)),x+px,y+py)
            DP[X]+=count
            heappush(Q,(X,DP[X]))
ANS=0
for X,x,y in DP:

    if x==z and y==w:
        ANS+=DP[X,x,y]

print(ANS)
0