結果

問題 No.2695 Warp Zone
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-23 04:36:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-09-30 13:03:20
合計ジャッジ時間 4,257 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,864 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 218 ms
109,056 KB
testcase_04 AC 207 ms
107,988 KB
testcase_05 AC 210 ms
107,648 KB
testcase_06 AC 215 ms
108,672 KB
testcase_07 AC 203 ms
108,928 KB
testcase_08 AC 57 ms
63,616 KB
testcase_09 AC 150 ms
87,296 KB
testcase_10 AC 38 ms
52,660 KB
testcase_11 AC 98 ms
79,932 KB
testcase_12 AC 155 ms
91,648 KB
testcase_13 AC 42 ms
52,352 KB
testcase_14 AC 158 ms
96,640 KB
testcase_15 AC 124 ms
86,016 KB
testcase_16 AC 91 ms
78,992 KB
testcase_17 AC 112 ms
82,304 KB
testcase_18 AC 176 ms
101,504 KB
testcase_19 AC 49 ms
62,848 KB
testcase_20 AC 165 ms
99,212 KB
testcase_21 AC 167 ms
95,616 KB
testcase_22 AC 118 ms
84,608 KB
testcase_23 AC 146 ms
92,108 KB
testcase_24 AC 37 ms
52,736 KB
testcase_25 AC 35 ms
52,608 KB
testcase_26 AC 35 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,n=map(int,input().split())
o=[tuple(map(int,input().split())) for i in range(n)]
e=[[] for i in range(n+2)]
for i in range(n):
	a,b,c,d=o[i]
	e[n]+=[(i,abs(a-1)+abs(b-1))]
	e[i]+=[(n+1,1+abs(h-c)+abs(w-d))]
	for j in range(n):
		if i!=j:
			a2,b2,c2,d2=o[j]
			e[i]+=[(j,1+abs(c-a2)+abs(d-b2))]
v=[h+w-2]*(n+2)
v[n]=0
q=[]
from heapq import heappush,heappop
heappush(q,(0,n))
while len(q)>0:
	sc,sp=heappop(q)
	if sc>v[sp]:
		continue
	for tp,tc in e[sp]:
		if v[tp]>sc+tc:
			v[tp]=sc+tc
			heappush(q,(v[tp],tp))
print(v[n+1])
0