結果
問題 | No.168 ものさし |
ユーザー | 双六 |
提出日時 | 2020-07-27 02:11:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,221 bytes |
コンパイル時間 | 142 ms |
コンパイル使用メモリ | 82,400 KB |
実行使用メモリ | 137,540 KB |
最終ジャッジ日時 | 2024-06-28 19:51:36 |
合計ジャッジ時間 | 12,605 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 308 ms
94,656 KB |
testcase_01 | AC | 36 ms
54,272 KB |
testcase_02 | AC | 36 ms
54,180 KB |
testcase_03 | AC | 34 ms
53,888 KB |
testcase_04 | AC | 36 ms
53,888 KB |
testcase_05 | WA | - |
testcase_06 | AC | 40 ms
54,016 KB |
testcase_07 | AC | 40 ms
54,400 KB |
testcase_08 | WA | - |
testcase_09 | AC | 47 ms
63,488 KB |
testcase_10 | AC | 64 ms
70,528 KB |
testcase_11 | AC | 280 ms
92,288 KB |
testcase_12 | AC | 986 ms
127,872 KB |
testcase_13 | AC | 1,607 ms
137,236 KB |
testcase_14 | AC | 1,533 ms
137,540 KB |
testcase_15 | AC | 38 ms
54,528 KB |
testcase_16 | AC | 45 ms
62,976 KB |
testcase_17 | AC | 57 ms
67,840 KB |
testcase_18 | AC | 98 ms
79,488 KB |
testcase_19 | AC | 1,440 ms
135,472 KB |
testcase_20 | AC | 1,541 ms
137,436 KB |
testcase_21 | AC | 1,519 ms
137,416 KB |
testcase_22 | AC | 1,507 ms
137,500 KB |
ソースコード
import sys; input = sys.stdin.buffer.readline sys.setrecursionlimit(10**7) from collections import defaultdict con = 10 ** 9 + 7; INF = float("inf") import math 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([math.sqrt((x1 - x2) ** 2 + (y1 - y2) ** 2) + 9.999999, 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()