結果
問題 | No.168 ものさし |
ユーザー | roaris |
提出日時 | 2019-10-30 15:40:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,112 ms / 2,000 ms |
コード長 | 1,515 bytes |
コンパイル時間 | 178 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 148,820 KB |
最終ジャッジ日時 | 2024-09-14 21:53:28 |
合計ジャッジ時間 | 10,829 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 317 ms
101,916 KB |
testcase_01 | AC | 116 ms
79,800 KB |
testcase_02 | AC | 119 ms
79,744 KB |
testcase_03 | AC | 118 ms
79,872 KB |
testcase_04 | AC | 117 ms
80,144 KB |
testcase_05 | AC | 119 ms
79,616 KB |
testcase_06 | AC | 116 ms
80,196 KB |
testcase_07 | AC | 118 ms
80,000 KB |
testcase_08 | AC | 117 ms
79,928 KB |
testcase_09 | AC | 130 ms
82,092 KB |
testcase_10 | AC | 139 ms
82,824 KB |
testcase_11 | AC | 267 ms
88,576 KB |
testcase_12 | AC | 817 ms
141,504 KB |
testcase_13 | AC | 1,058 ms
147,796 KB |
testcase_14 | AC | 1,054 ms
148,792 KB |
testcase_15 | AC | 119 ms
79,908 KB |
testcase_16 | AC | 125 ms
80,700 KB |
testcase_17 | AC | 137 ms
82,560 KB |
testcase_18 | AC | 154 ms
83,016 KB |
testcase_19 | AC | 996 ms
147,764 KB |
testcase_20 | AC | 1,112 ms
148,352 KB |
testcase_21 | AC | 1,024 ms
148,820 KB |
testcase_22 | AC | 1,025 ms
148,416 KB |
ソースコード
import sys input = sys.stdin.readline from decimal import * class Unionfind(): def __init__(self, n): self.par = [-1] * n self.rank = [1] * n def root(self, x): if self.par[x] < 0: return x self.par[x] = self.root(self.par[x]) return self.par[x] def unite(self, x, y): rx, ry = self.root(x), self.root(y) if rx != ry: if self.rank[rx] >= self.rank[ry]: self.par[rx] += self.par[ry] self.par[ry] = rx if self.rank[rx] == self.rank[ry]: self.rank[rx] += 1 else: self.par[ry] += self.par[rx] self.par[rx] = ry def is_same(self, x, y): return self.root(x) == self.root(y) def count(self, x): return -self.par[x] N = int(input()) XY = [tuple(map(int, input().split())) for _ in range(N)] edges = [] for i in range(N): for j in range(i+1, N): Xi, Yi = XY[i] Xj, Yj = XY[j] edges.append((i, j, (Xi-Xj)**2+(Yi-Yj)**2)) edges.sort(key=lambda k: k[2]) uf = Unionfind(N) for s, t, w in edges: uf.unite(s, t) if uf.is_same(0, N-1): ng, ok = -1, 10**11 while abs(ok-ng) > 1: mid = (ng+ok)//2 if (mid*10)**2 >= w: ok = mid else: ng = mid print(10*ok) break