結果
問題 | No.168 ものさし |
ユーザー | rlangevin |
提出日時 | 2023-07-04 12:26:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,351 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 82,148 KB |
実行使用メモリ | 77,176 KB |
最終ジャッジ日時 | 2024-07-18 08:25:15 |
合計ジャッジ時間 | 3,655 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 142 ms
76,972 KB |
testcase_01 | AC | 36 ms
52,608 KB |
testcase_02 | AC | 35 ms
52,704 KB |
testcase_03 | AC | 36 ms
52,480 KB |
testcase_04 | AC | 35 ms
52,992 KB |
testcase_05 | AC | 37 ms
51,968 KB |
testcase_06 | AC | 41 ms
60,416 KB |
testcase_07 | WA | - |
testcase_08 | AC | 35 ms
52,736 KB |
testcase_09 | AC | 80 ms
76,100 KB |
testcase_10 | AC | 97 ms
75,888 KB |
testcase_11 | AC | 134 ms
76,520 KB |
testcase_12 | AC | 209 ms
77,112 KB |
testcase_13 | AC | 263 ms
76,844 KB |
testcase_14 | AC | 247 ms
76,544 KB |
testcase_15 | AC | 37 ms
53,200 KB |
testcase_16 | AC | 85 ms
75,948 KB |
testcase_17 | AC | 88 ms
76,160 KB |
testcase_18 | AC | 98 ms
75,696 KB |
testcase_19 | AC | 222 ms
77,136 KB |
testcase_20 | AC | 212 ms
76,800 KB |
testcase_21 | AC | 218 ms
77,176 KB |
testcase_22 | AC | 223 ms
76,732 KB |
ソースコード
import sys input = sys.stdin.readline class UnionFind(object): def __init__(self, n=1): self.par = [i for i in range(n)] self.rank = [0 for _ in range(n)] self.size = [1 for _ in range(n)] def find(self, x): if self.par[x] == x: return x else: self.par[x] = self.find(self.par[x]) return self.par[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x != y: if self.rank[x] < self.rank[y]: x, y = y, x if self.rank[x] == self.rank[y]: self.rank[x] += 1 self.par[y] = x self.size[x] += self.size[y] def is_same(self, x, y): return self.find(x) == self.find(y) def get_size(self, x): x = self.find(x) return self.size[x] N = int(input()) X, Y = [0] * N, [0] * N for i in range(N): X[i], Y[i] = map(int, input().split()) yes = 10 ** 9 + 5 no = -1 def check(m): U = UnionFind(N) for i in range(N): for j in range(i + 1, N): if (X[i] - X[j]) ** 2 + (Y[i] - Y[j]) ** 2 <= m ** 2: U.union(i, j) return U.is_same(0, N - 1) while yes - no != 1: mid = (yes + no)//2 if check(mid): yes = mid else: no = mid print((yes + 9)//10*10)