結果

問題 No.2897 2集合間距離
ユーザー 👑 p-adicp-adic
提出日時 2024-03-14 21:32:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,339 ms / 3,500 ms
コード長 432 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 120,320 KB
最終ジャッジ日時 2024-09-20 20:50:50
合計ジャッジ時間 24,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 710 ms
102,400 KB
testcase_01 AC 743 ms
102,784 KB
testcase_02 AC 683 ms
102,400 KB
testcase_03 AC 781 ms
103,296 KB
testcase_04 AC 770 ms
102,656 KB
testcase_05 AC 753 ms
102,656 KB
testcase_06 AC 784 ms
102,656 KB
testcase_07 AC 782 ms
102,656 KB
testcase_08 AC 793 ms
102,892 KB
testcase_09 AC 762 ms
102,784 KB
testcase_10 AC 825 ms
104,576 KB
testcase_11 AC 804 ms
105,088 KB
testcase_12 AC 943 ms
108,136 KB
testcase_13 AC 932 ms
108,068 KB
testcase_14 AC 917 ms
117,172 KB
testcase_15 AC 994 ms
118,232 KB
testcase_16 AC 1,308 ms
120,320 KB
testcase_17 AC 1,280 ms
119,936 KB
testcase_18 AC 1,339 ms
120,192 KB
testcase_19 AC 1,292 ms
120,064 KB
testcase_20 AC 1,246 ms
120,064 KB
testcase_21 AC 1,109 ms
111,872 KB
testcase_22 AC 1,067 ms
109,824 KB
testcase_23 AC 1,078 ms
110,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import queue
I,R=input,range
J=lambda:map(int,I().split())
H=1000
N=int(I())
t=H*H
L=t+1
D=[-1]*L
V=queue.Queue()
for i in R(N):
	x,y=J()
	u=x*H+y
	D[u]=0
	V.put(u)
M=int(I())
T=[0]*L
for j in R(M):
	z,w=J()
	T[z*H+w]=1
while V.qsize():
	u=V.get()
	i,j=u//H,u%H
	E=[]
	if u<t:
		if i:E+=[u-H]
		if i+1<H:E+=[u+H]
		if j:E+=[u-1]
		if j+1<H:E+=[u+1]
		if T[u]:E+=[t]
	for v in E:
		if D[v]<0:
			D[v]=D[u]+1
			V.put(v)
print(D[t]-1)
0