結果
問題 | No.168 ものさし |
ユーザー | 双六 |
提出日時 | 2020-07-27 02:06:02 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,209 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 137,180 KB |
最終ジャッジ日時 | 2024-06-28 19:50:54 |
合計ジャッジ時間 | 15,606 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 380 ms
94,336 KB |
testcase_01 | WA | - |
testcase_02 | AC | 45 ms
54,272 KB |
testcase_03 | AC | 45 ms
54,016 KB |
testcase_04 | AC | 45 ms
54,016 KB |
testcase_05 | AC | 45 ms
54,144 KB |
testcase_06 | AC | 45 ms
54,016 KB |
testcase_07 | AC | 44 ms
54,144 KB |
testcase_08 | AC | 45 ms
53,760 KB |
testcase_09 | AC | 59 ms
63,360 KB |
testcase_10 | AC | 83 ms
70,784 KB |
testcase_11 | AC | 346 ms
92,160 KB |
testcase_12 | AC | 1,256 ms
127,616 KB |
testcase_13 | AC | 1,887 ms
136,784 KB |
testcase_14 | AC | 1,818 ms
137,180 KB |
testcase_15 | AC | 47 ms
54,016 KB |
testcase_16 | AC | 58 ms
62,592 KB |
testcase_17 | AC | 72 ms
67,712 KB |
testcase_18 | AC | 121 ms
79,616 KB |
testcase_19 | AC | 1,822 ms
135,528 KB |
testcase_20 | AC | 1,849 ms
136,980 KB |
testcase_21 | AC | 1,875 ms
136,844 KB |
testcase_22 | AC | 1,832 ms
136,764 KB |
ソースコード
import sys; input = sys.stdin.buffer.readline sys.setrecursionlimit(10**7) from collections import defaultdict con = 10 ** 9 + 7; INF = float("inf") def getlist(): return list(map(int, input().split())) class UnionFind: def __init__(self, n): self.par = [i for i in range(n + 1)] self.rank = [0] * (n + 1) 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 same_check(self, x, y): return self.find(x) == self.find(y) def union(self, x, y): x = self.find(x); y = self.find(y) if self.rank[x] < self.rank[y]: self.par[x] = y else: self.par[y] = x if self.rank[x] == self.rank[y]: self.rank[x] += 1 #処理内容 def main(): N = int(input()) UF = UnionFind(N) node = [] edge = [] for i in range(N): X, Y = getlist() node.append([X, Y]) for i in range(N): for j in range(i + 1, N): x1, y1 = node[i] x2, y2 = node[j] edge.append([((x1 - x2) ** 2 + (y1 - y2) ** 2) ** 0.5 + 9.99999999, i, j]) edge.sort() ans = INF for dist, i, j in edge: UF.union(i, j) if UF.same_check(0, N - 1): ans = int(dist // 10) * 10 break print(ans) if __name__ == '__main__': main()