結果

問題 No.96 圏外です。
ユーザー しらっ亭しらっ亭
提出日時 2015-08-31 00:32:12
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 1,071 ms / 5,000 ms
コード長 2,391 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 87,192 KB
実行使用メモリ 273,388 KB
最終ジャッジ日時 2023-08-25 21:44:18
合計ジャッジ時間 15,743 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
71,780 KB
testcase_01 AC 83 ms
71,892 KB
testcase_02 AC 80 ms
72,068 KB
testcase_03 AC 80 ms
71,572 KB
testcase_04 AC 134 ms
83,928 KB
testcase_05 AC 145 ms
88,640 KB
testcase_06 AC 158 ms
93,684 KB
testcase_07 AC 214 ms
92,764 KB
testcase_08 AC 225 ms
104,644 KB
testcase_09 AC 258 ms
108,668 KB
testcase_10 AC 394 ms
101,784 KB
testcase_11 AC 370 ms
120,940 KB
testcase_12 AC 395 ms
151,252 KB
testcase_13 AC 658 ms
117,732 KB
testcase_14 AC 631 ms
158,584 KB
testcase_15 AC 837 ms
130,520 KB
testcase_16 AC 831 ms
183,684 KB
testcase_17 AC 830 ms
273,388 KB
testcase_18 AC 1,041 ms
203,452 KB
testcase_19 AC 1,041 ms
202,144 KB
testcase_20 AC 714 ms
121,796 KB
testcase_21 AC 1,071 ms
153,040 KB
testcase_22 AC 526 ms
104,964 KB
testcase_23 AC 603 ms
104,468 KB
testcase_24 AC 86 ms
71,620 KB
testcase_25 AC 598 ms
201,056 KB
testcase_26 AC 745 ms
243,024 KB
testcase_27 AC 665 ms
230,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from itertools import combinations
import math


class UnionFind:
    def __init__(self, n):
        self.par = list(range(n))

    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 union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        self.par[x] = y


def convex_hull(P):
    def veccross(A, B, C):
        return (C[0] - A[0]) * (B[1] - A[1]) - (C[1] - A[1]) * (B[0] - A[0])

    n = len(P)
    if n <= 2:
        return list(range(n))

    ps = [None] * n
    for i in range(n):
        ps[i] = (P[i], i)
    ps.sort()

    k = 0
    res = [0] * (n * 2)

    for i in range(n):
        while k > 1 and veccross(P[res[k - 2]], P[res[k - 1]], ps[i][0]) <= 0:
            k -= 1
        res[k] = ps[i][1]
        k += 1

    t = k
    for i in range(n - 2, -1, -1):
        while k > t and veccross(P[res[k - 2]], P[res[k - 1]], ps[i][0]) <= 0:
            k -= 1
        res[k] = ps[i][1]
        k += 1

    return res[:k - 1]


def m_dist(g, xs, ys):
    ps = [(xs[i], ys[i]) for i in g]
    os = convex_hull(ps)
    ma = 0
    for i, j in combinations(os, 2):
        ma = max(ma, (ps[i][0] - ps[j][0]) ** 2 + (ps[i][1] - ps[j][1]) ** 2)
    return ma


def solve():
    N = int(input())
    XS = [0] * N
    YS = [0] * N

    B = defaultdict(list)

    def b(x, y):
        if 0 <= x <= 2000 and 0 <= y <= 2000:
            return B[x, y]
        else:
            return []

    ds = [(-1, -1), (0, -1), (1, -1), (-1, 0), (0, 0), (1, 0), (-1, 1), (0, 1), (1, 1)]

    uf = UnionFind(N)

    for i in range(N):
        x, y = map(int, input().split())
        x += 10000
        y += 10000
        XS[i] = x
        YS[i] = y

        x10 = x // 10
        y10 = y // 10

        for dx, dy in ds:
            for j in b(x10 + dx, y10 + dy):
                if (x - XS[j]) ** 2 + (y - YS[j]) ** 2 <= 100:
                    uf.union(i, j)
        B[x10, y10].append(i)

    gd = defaultdict(list)
    for i in range(N):
        gd[uf.find(i)].append(i)

    if len(gd) == 0:
        print(1)
    else:
        ma = 0
        for g in gd.values():
            ma = max(ma, m_dist(g, XS, YS))
        print(math.sqrt(ma) + 2)


if __name__ == '__main__':
    solve()
0