結果
問題 | No.94 圏外です。(EASY) |
ユーザー | momotaros300 |
提出日時 | 2019-09-07 16:32:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,316 bytes |
コンパイル時間 | 386 ms |
コンパイル使用メモリ | 82,460 KB |
実行使用メモリ | 85,780 KB |
最終ジャッジ日時 | 2024-06-26 21:35:11 |
合計ジャッジ時間 | 2,947 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
61,056 KB |
testcase_01 | AC | 41 ms
61,296 KB |
testcase_02 | AC | 46 ms
68,876 KB |
testcase_03 | AC | 42 ms
61,324 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | AC | 44 ms
60,668 KB |
ソースコード
n = int(input()) xy = [list(map(int, input().split())) for i in range(n)] data=[[-1]*(10**3) for i in range(10**3)] ans=0 if n==0: print(1) exit() class UnionFind: __slots__ = ['id'] def __init__(self, n): self.id = [-1] * n def root(self, x): if self.id[x] < 0: return x else: self.id[x] = self.root(self.id[x]) return self.id[x] def find(self, x, y): return self.root(x) == self.root(y) def union(self, x, y): s1, s2 = self.root(x), self.root(y) if s1 != s2: if self.id[s1] <= self.id[s2]: self.id[s1] += self.id[s2] self.id[s2] = s1 else: self.id[s2] += self.id[s1] self.id[s1] = s2 return True return False uf =UnionFind(n) for i in range(n): x,y=xy[i] data[x][y]=i for k in range(n): x,y=xy[k] for i in range(-10,11): for j in range(-10,11): if data[i][j]>=0: if (x-i)**2+(y-j)**2<=100: uf.union(k,data[i][j]) for i in range(n): for j in range(n): if uf.find(i,j): x1,y1=xy[i] x2,y2=xy[j] ans=max(ans,(x1-x2)**2+(y1-y2)**2) print(ans**(0.5)+2)