結果

問題 No.168 ものさし
ユーザー gigurururugigurururu
提出日時 2015-03-26 00:16:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 133,864 KB
最終ジャッジ日時 2024-06-06 14:56:16
合計ジャッジ時間 3,691 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
89,540 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 39 ms
52,864 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 60 ms
68,096 KB
testcase_10 AC 74 ms
77,440 KB
testcase_11 AC 132 ms
89,496 KB
testcase_12 AC 186 ms
107,356 KB
testcase_13 AC 300 ms
133,456 KB
testcase_14 AC 140 ms
109,108 KB
testcase_15 AC 39 ms
52,992 KB
testcase_16 AC 60 ms
66,432 KB
testcase_17 AC 69 ms
72,832 KB
testcase_18 AC 65 ms
73,344 KB
testcase_19 AC 221 ms
118,272 KB
testcase_20 AC 185 ms
114,912 KB
testcase_21 AC 303 ms
133,864 KB
testcase_22 AC 216 ms
119,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq,math

def hypot2(x,y):
  return x*x+y*y

def solve(n,l):
  dst=[[(hypot2(x1-x2,y1-y2),j)for j,(x2,y2) in enumerate(l)] for x1,y1 in l]
  visited = set()
  pq = [(0,0)]
  mx=10
  while len(pq):
    my,d = heapq.heappop(pq)
    if(mx<my):mx=my
    if(d==n-1):break
    if(d in visited):continue
    visited.add(d)
    for s,i in dst[d]:
      if(i in visited):continue
      heapq.heappush(pq,(s,i))
  ans=int(math.sqrt(mx))//10*10
  return(ans+10 if ans*ans<mx else ans)

n=int(input())
l=[list(map(int,input().split())) for _ in range(n)]
print(solve(n,l))
0