結果
問題 | No.96 圏外です。 |
ユーザー | cologne |
提出日時 | 2022-01-31 20:01:53 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,905 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 122,404 KB |
最終ジャッジ日時 | 2024-06-11 09:03:46 |
合計ジャッジ時間 | 16,006 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
60,928 KB |
testcase_01 | AC | 52 ms
60,672 KB |
testcase_02 | AC | 52 ms
61,184 KB |
testcase_03 | AC | 45 ms
52,736 KB |
testcase_04 | AC | 131 ms
79,360 KB |
testcase_05 | AC | 145 ms
79,360 KB |
testcase_06 | AC | 162 ms
79,852 KB |
testcase_07 | AC | 198 ms
80,560 KB |
testcase_08 | AC | 213 ms
82,048 KB |
testcase_09 | AC | 257 ms
83,488 KB |
testcase_10 | AC | 402 ms
86,592 KB |
testcase_11 | AC | 357 ms
86,720 KB |
testcase_12 | AC | 357 ms
87,780 KB |
testcase_13 | AC | 717 ms
96,376 KB |
testcase_14 | AC | 637 ms
100,956 KB |
testcase_15 | AC | 1,055 ms
106,696 KB |
testcase_16 | AC | 896 ms
110,768 KB |
testcase_17 | AC | 884 ms
121,152 KB |
testcase_18 | AC | 1,129 ms
121,904 KB |
testcase_19 | AC | 1,183 ms
122,404 KB |
testcase_20 | AC | 1,193 ms
120,528 KB |
testcase_21 | AC | 856 ms
115,580 KB |
testcase_22 | RE | - |
testcase_23 | AC | 1,049 ms
122,168 KB |
testcase_24 | AC | 51 ms
60,544 KB |
testcase_25 | AC | 606 ms
99,056 KB |
testcase_26 | AC | 774 ms
106,424 KB |
testcase_27 | AC | 683 ms
108,608 KB |
ソースコード
import sys import math import bisect def input(): return sys.stdin.readline().rstrip() class DisjointSet: def __init__(self, N): self.par = list(range(N)) def find(self, a): if a == self.par[a]: return a self.par[a] = self.find(self.par[a]) return self.par[a] def union(self, a, b): self.par[self.find(a)] = self.find(b) def ccw(p1, p2, p3): x1, y1 = p1 x2, y2 = p2 x3, y3 = p3 return (x2-x1)*(y3-y1)-(x3-x1)*(y2-y1) def dist(xy): if len(xy) <= 1: return 0 if len(xy) == 2: (x1, y1), (x2, y2) = xy return ((x2-x1)**2 + (y2-y1)**2)**0.5 xy.sort() upper, lower = [], [] for pt in xy: while len(upper) >= 2: if ccw(upper[-2], upper[-1], pt) >= 0: upper.pop() else: break upper.append(pt) while len(lower) >= 2: if ccw(lower[-2], lower[-1], pt) <= 0: lower.pop() else: break lower.append(pt) lower.extend(upper[-2:0:-1]) if len(lower) == 2: (x1, y1), (x2, y2) = lower return ((x2-x1)**2 + (y2-y1)**2)**0.5 ans = 0 j = 2 for i in range(len(lower)): ni = 0 if i + 1 == len(lower) else i + 1 while True: nj = 0 if j + 1 == len(lower) else j + 1 if ccw(lower[i], lower[ni], lower[j]) <= \ ccw(lower[i], lower[ni], lower[nj]): j = nj else: break x1, y1 = lower[i] x2, y2 = lower[ni] x3, y3 = lower[j] ans = max(ans, (x3-x1)**2+(y3-y1)**2, (x3-x2)**2+(y3-y2)**2) return ans ** 0.5 def main(): N = int(input()) if N == 0: print(1) return MAX = 10000 xpos = [[] for i in range(MAX*2+1)] coord = {} xy = [] for i in range(N): x, y = [int(v)+MAX for v in input().split()] xpos[x].append(y) coord[(x, y)] = i xy.append((x, y)) ds = DisjointSet(N) for x in range(len(xpos)): xpos[x].sort() for j in range(len(xpos[x])-1): yp, yn = xpos[x][j], xpos[x][j+1] if yn-yp <= 10: ds.union(coord.get((x, yp)), coord.get((x, yn))) for (x, y), v in coord.items(): for xt in range(max(0, x-10), x): yt = int(math.sqrt(100-(x-xt)**2)) L = bisect.bisect_left(xpos[xt], y-yt) R = bisect.bisect_right(xpos[xt], y+yt) if L != R: ds.union(v, coord.get((xt, xpos[xt][L]))) if L != R-1: ds.union(v, coord.get((xt, xpos[xt][R-1]))) connected = [[] for i in range(N)] for i in range(N): connected[ds.find(i)].append(xy[i]) print(max(map(dist, connected)) + 2) if __name__ == '__main__': main()