結果

問題 No.96 圏外です。
ユーザー しらっ亭しらっ亭
提出日時 2015-08-31 00:30:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 4,902 ms / 5,000 ms
コード長 2,391 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 263,252 KB
最終ジャッジ日時 2024-07-18 15:49:02
合計ジャッジ時間 37,447 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,136 KB
testcase_01 AC 34 ms
11,136 KB
testcase_02 AC 31 ms
11,136 KB
testcase_03 AC 30 ms
11,264 KB
testcase_04 AC 66 ms
17,672 KB
testcase_05 AC 91 ms
21,092 KB
testcase_06 AC 131 ms
27,196 KB
testcase_07 AC 178 ms
29,772 KB
testcase_08 AC 261 ms
43,444 KB
testcase_09 AC 350 ms
52,072 KB
testcase_10 AC 414 ms
47,128 KB
testcase_11 AC 635 ms
78,184 KB
testcase_12 AC 874 ms
114,848 KB
testcase_13 AC 889 ms
63,016 KB
testcase_14 AC 1,234 ms
125,652 KB
testcase_15 AC 1,393 ms
78,348 KB
testcase_16 AC 1,833 ms
150,312 KB
testcase_17 AC 2,421 ms
263,252 KB
testcase_18 AC 2,166 ms
164,564 KB
testcase_19 AC 2,204 ms
164,332 KB
testcase_20 AC 2,860 ms
73,732 KB
testcase_21 AC 2,199 ms
115,308 KB
testcase_22 AC 4,902 ms
54,788 KB
testcase_23 AC 4,882 ms
54,720 KB
testcase_24 AC 28 ms
11,264 KB
testcase_25 AC 1,715 ms
183,016 KB
testcase_26 AC 2,335 ms
247,164 KB
testcase_27 AC 1,884 ms
223,448 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