結果

問題 No.2897 2集合間距離
ユーザー titiatitia
提出日時 2024-11-03 04:35:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 611 ms / 3,500 ms
コード長 559 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 117,544 KB
最終ジャッジ日時 2024-11-03 04:36:12
合計ジャッジ時間 11,923 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 204 ms
92,552 KB
testcase_01 AC 199 ms
92,516 KB
testcase_02 AC 205 ms
92,628 KB
testcase_03 AC 246 ms
92,812 KB
testcase_04 AC 248 ms
92,900 KB
testcase_05 AC 241 ms
92,960 KB
testcase_06 AC 241 ms
92,952 KB
testcase_07 AC 239 ms
93,080 KB
testcase_08 AC 242 ms
93,172 KB
testcase_09 AC 231 ms
93,324 KB
testcase_10 AC 258 ms
94,684 KB
testcase_11 AC 305 ms
94,664 KB
testcase_12 AC 407 ms
99,952 KB
testcase_13 AC 380 ms
99,804 KB
testcase_14 AC 428 ms
113,220 KB
testcase_15 AC 453 ms
113,160 KB
testcase_16 AC 563 ms
117,388 KB
testcase_17 AC 608 ms
117,360 KB
testcase_18 AC 559 ms
117,368 KB
testcase_19 AC 611 ms
117,544 KB
testcase_20 AC 581 ms
117,396 KB
testcase_21 AC 463 ms
105,348 KB
testcase_22 AC 423 ms
101,768 KB
testcase_23 AC 396 ms
102,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import deque

DP=[[1<<30]*1010 for i in range(1010)]
Q=deque()
N=int(input())

for i in range(N):
    x,y=map(int,input().split())
    DP[x][y]=0
    Q.append((x,y))

while Q:
    x,y=Q.popleft()
    for z,w in [(x+1,y),(x-1,y),(x,y+1),(x,y-1)]:
        if 0<=z<1010 and 0<=w<1010:
            if DP[z][w]>DP[x][y]+1:
                DP[z][w]=DP[x][y]+1
                Q.append((z,w))

M=int(input())
ANS=1<<30

for i in range(M):
    x,y=map(int,input().split())
    ANS=min(ANS,DP[x][y])

print(ANS)
0