結果
問題 | No.168 ものさし |
ユーザー | tnodino |
提出日時 | 2022-07-24 13:17:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 270 ms / 2,000 ms |
コード長 | 1,094 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 82,108 KB |
実行使用メモリ | 77,856 KB |
最終ジャッジ日時 | 2024-07-06 07:34:30 |
合計ジャッジ時間 | 4,238 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 156 ms
77,148 KB |
testcase_01 | AC | 39 ms
53,952 KB |
testcase_02 | AC | 37 ms
53,968 KB |
testcase_03 | AC | 41 ms
55,584 KB |
testcase_04 | AC | 40 ms
55,320 KB |
testcase_05 | AC | 37 ms
54,076 KB |
testcase_06 | AC | 44 ms
62,596 KB |
testcase_07 | AC | 36 ms
54,452 KB |
testcase_08 | AC | 36 ms
54,552 KB |
testcase_09 | AC | 77 ms
76,460 KB |
testcase_10 | AC | 91 ms
76,744 KB |
testcase_11 | AC | 148 ms
77,376 KB |
testcase_12 | AC | 241 ms
77,524 KB |
testcase_13 | AC | 270 ms
77,780 KB |
testcase_14 | AC | 253 ms
77,316 KB |
testcase_15 | AC | 39 ms
55,292 KB |
testcase_16 | AC | 80 ms
76,352 KB |
testcase_17 | AC | 89 ms
76,668 KB |
testcase_18 | AC | 106 ms
76,296 KB |
testcase_19 | AC | 247 ms
77,204 KB |
testcase_20 | AC | 246 ms
77,608 KB |
testcase_21 | AC | 260 ms
77,856 KB |
testcase_22 | AC | 268 ms
77,836 KB |
ソースコード
from collections import deque class UnionFind: def __init__(self, sz): self.par = [-1] * sz def root(self, pos): if self.par[pos] < 0: return pos self.par[pos] = self.root(self.par[pos]) return self.par[pos] def unite(self, u, v): u = self.root(u) v = self.root(v) if u == v: return self.par[u] += self.par[v] self.par[v] = u def same(self, u, v): if self.root(u) == self.root(v): return True return False def size(self, pos): return -self.par[self.root(pos)] def check(x): UF = UnionFind(N) for i in range(N): for j in range(i+1,N): d = (X[i]-X[j])**2 + (Y[i]-Y[j])**2 if d <= x: UF.unite(i, j) return UF.same(0, N-1) N = int(input()) Z = [list(map(int,input().split())) for _ in range(N)] X,Y = [list(i) for i in zip(*Z)] ng = 0 ok = 1<<32 while ok - ng > 1: x = (ok+ng) // 2 if check(x**2): ok = x else: ng = x ok = (ok + 9) // 10 * 10 print(ok)