結果
問題 | No.168 ものさし |
ユーザー | gigurururu |
提出日時 | 2015-03-25 23:47:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 825 ms / 2,000 ms |
コード長 | 570 bytes |
コンパイル時間 | 124 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 184,064 KB |
最終ジャッジ日時 | 2024-06-06 14:56:04 |
合計ジャッジ時間 | 6,793 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 226 ms
48,768 KB |
testcase_01 | AC | 30 ms
10,880 KB |
testcase_02 | AC | 30 ms
10,880 KB |
testcase_03 | AC | 32 ms
10,880 KB |
testcase_04 | AC | 31 ms
11,008 KB |
testcase_05 | AC | 31 ms
10,880 KB |
testcase_06 | AC | 32 ms
11,008 KB |
testcase_07 | AC | 32 ms
10,880 KB |
testcase_08 | AC | 31 ms
10,880 KB |
testcase_09 | AC | 37 ms
11,776 KB |
testcase_10 | AC | 52 ms
14,464 KB |
testcase_11 | AC | 213 ms
44,288 KB |
testcase_12 | AC | 508 ms
118,016 KB |
testcase_13 | AC | 825 ms
177,920 KB |
testcase_14 | AC | 581 ms
148,864 KB |
testcase_15 | AC | 31 ms
10,880 KB |
testcase_16 | AC | 35 ms
11,520 KB |
testcase_17 | AC | 45 ms
12,928 KB |
testcase_18 | AC | 60 ms
17,024 KB |
testcase_19 | AC | 659 ms
162,560 KB |
testcase_20 | AC | 635 ms
162,048 KB |
testcase_21 | AC | 823 ms
184,064 KB |
testcase_22 | AC | 667 ms
166,656 KB |
ソースコード
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))