結果
問題 | No.94 圏外です。(EASY) |
ユーザー | 双六 |
提出日時 | 2020-08-10 04:43:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 128 ms / 5,000 ms |
コード長 | 1,504 bytes |
コンパイル時間 | 550 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 77,496 KB |
最終ジャッジ日時 | 2024-10-06 00:58:04 |
合計ジャッジ時間 | 2,856 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
53,888 KB |
testcase_01 | AC | 39 ms
53,760 KB |
testcase_02 | AC | 39 ms
54,144 KB |
testcase_03 | AC | 37 ms
53,888 KB |
testcase_04 | AC | 55 ms
67,584 KB |
testcase_05 | AC | 62 ms
72,192 KB |
testcase_06 | AC | 77 ms
76,784 KB |
testcase_07 | AC | 93 ms
77,184 KB |
testcase_08 | AC | 106 ms
77,056 KB |
testcase_09 | AC | 118 ms
77,332 KB |
testcase_10 | AC | 113 ms
77,052 KB |
testcase_11 | AC | 113 ms
77,296 KB |
testcase_12 | AC | 115 ms
77,496 KB |
testcase_13 | AC | 113 ms
77,492 KB |
testcase_14 | AC | 122 ms
77,184 KB |
testcase_15 | AC | 122 ms
77,168 KB |
testcase_16 | AC | 120 ms
77,312 KB |
testcase_17 | AC | 117 ms
77,184 KB |
testcase_18 | AC | 110 ms
77,160 KB |
testcase_19 | AC | 128 ms
77,184 KB |
testcase_20 | AC | 41 ms
54,656 KB |
testcase_21 | AC | 39 ms
54,400 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) self.size = [1] * (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]: if self.same_check(x, y) != True: self.size[y] += self.size[x] self.size[x] = 0 self.par[x] = y else: if self.same_check(x, y) != True: self.size[x] += self.size[y] self.size[y] = 0 self.par[y] = x if self.rank[x] == self.rank[y]: self.rank[x] += 1 def siz(self, x): x = self.find(x) return self.size[x] #処理内容 def main(): N = int(input()) path = [] for i in range(N): X, Y = getlist() path.append([X, Y]) UF = UnionFind(N) for i in range(N): for j in range(i + 1, N): x1, y1 = path[i] x2, y2 = path[j] if (x1 - x2) ** 2 + (y1 - y2) ** 2 <= 100: UF.union(i, j) ans = 1 for i in range(N): for j in range(N): if UF.same_check(i, j): x1, y1 = path[i] x2, y2 = path[j] ans = max(ans, 2 + (((x1 - x2) ** 2) + (y1 - y2) ** 2) ** 0.5) print(ans) if __name__ == '__main__': main()