結果

問題 No.168 ものさし
ユーザー るこーそーるこーそー
提出日時 2024-09-20 09:26:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,569 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 272,320 KB
最終ジャッジ日時 2024-09-20 09:26:22
合計ジャッジ時間 13,289 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 394 ms
88,628 KB
testcase_01 AC 39 ms
53,820 KB
testcase_02 AC 41 ms
54,628 KB
testcase_03 AC 43 ms
54,460 KB
testcase_04 AC 41 ms
54,848 KB
testcase_05 AC 42 ms
54,564 KB
testcase_06 AC 49 ms
63,568 KB
testcase_07 AC 40 ms
54,864 KB
testcase_08 AC 39 ms
54,400 KB
testcase_09 AC 131 ms
77,352 KB
testcase_10 AC 167 ms
78,348 KB
testcase_11 AC 408 ms
100,460 KB
testcase_12 AC 1,118 ms
229,908 KB
testcase_13 AC 1,569 ms
272,320 KB
testcase_14 AC 1,536 ms
272,296 KB
testcase_15 AC 41 ms
56,020 KB
testcase_16 AC 124 ms
77,484 KB
testcase_17 AC 143 ms
77,740 KB
testcase_18 AC 185 ms
78,260 KB
testcase_19 AC 1,115 ms
145,296 KB
testcase_20 AC 1,220 ms
152,224 KB
testcase_21 AC 1,221 ms
152,808 KB
testcase_22 AC 1,228 ms
152,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
xy=[list(map(int,input().split())) for _ in range(n)]

def dist(a,b):
    return abs(a[0]-b[0])**2+abs(a[1]-b[1])**2

from collections import deque
def bfs(v,graph):
    que=deque();que.append(v)
    dist=[-1]*n;dist[v]=0
    while que:
        v=que.popleft()
        for nv in graph[v]:
            if dist[nv]!=-1:continue    
            dist[nv]=dist[v]+1
            que.append(nv)
    
    return dist

def check(x):
    graph=[[] for _ in range(n)]
    for i in range(n-1):
        for j in range(i+1,n):
            if dist(xy[i],xy[j])<=x**2:
                graph[i].append(j)
                graph[j].append(i)
    
    d=bfs(0,graph)
    return d[-1]!=-1
    

ng,ok=-1,10**9
while ok-ng>1:
    mid=(ok+ng)//2
    if check(10*mid):
        ok=mid
    else:
        ng=mid

print(10*ok)
0