結果
問題 | No.94 圏外です。(EASY) |
ユーザー | 双六 |
提出日時 | 2020-08-10 04:43:29 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 132 ms / 5,000 ms |
コード長 | 1,504 bytes |
コンパイル時間 | 270 ms |
コンパイル使用メモリ | 82,568 KB |
実行使用メモリ | 77,904 KB |
最終ジャッジ日時 | 2024-10-06 00:58:17 |
合計ジャッジ時間 | 2,840 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
54,776 KB |
testcase_01 | AC | 40 ms
54,848 KB |
testcase_02 | AC | 40 ms
55,432 KB |
testcase_03 | AC | 38 ms
54,528 KB |
testcase_04 | AC | 56 ms
69,036 KB |
testcase_05 | AC | 66 ms
72,852 KB |
testcase_06 | AC | 77 ms
77,032 KB |
testcase_07 | AC | 87 ms
77,340 KB |
testcase_08 | AC | 102 ms
77,076 KB |
testcase_09 | AC | 115 ms
77,656 KB |
testcase_10 | AC | 114 ms
77,904 KB |
testcase_11 | AC | 110 ms
77,280 KB |
testcase_12 | AC | 111 ms
77,044 KB |
testcase_13 | AC | 111 ms
77,252 KB |
testcase_14 | AC | 120 ms
77,256 KB |
testcase_15 | AC | 122 ms
77,236 KB |
testcase_16 | AC | 121 ms
77,128 KB |
testcase_17 | AC | 121 ms
77,364 KB |
testcase_18 | AC | 116 ms
77,212 KB |
testcase_19 | AC | 132 ms
76,872 KB |
testcase_20 | AC | 39 ms
55,248 KB |
testcase_21 | AC | 39 ms
54,712 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()