結果

問題 No.96 圏外です。
ユーザー mkawa2mkawa2
提出日時 2023-09-27 17:33:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 3,714 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 87,096 KB
実行使用メモリ 131,448 KB
最終ジャッジ日時 2023-09-27 17:33:45
合計ジャッジ時間 15,572 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
72,120 KB
testcase_01 AC 82 ms
71,560 KB
testcase_02 AC 95 ms
72,116 KB
testcase_03 WA -
testcase_04 AC 126 ms
78,584 KB
testcase_05 AC 120 ms
78,312 KB
testcase_06 AC 141 ms
80,776 KB
testcase_07 AC 188 ms
82,556 KB
testcase_08 AC 168 ms
83,780 KB
testcase_09 AC 192 ms
86,280 KB
testcase_10 AC 357 ms
89,628 KB
testcase_11 AC 304 ms
92,088 KB
testcase_12 AC 239 ms
95,996 KB
testcase_13 AC 623 ms
99,964 KB
testcase_14 RE -
testcase_15 AC 939 ms
113,472 KB
testcase_16 AC 710 ms
120,684 KB
testcase_17 AC 505 ms
131,448 KB
testcase_18 AC 886 ms
130,520 KB
testcase_19 AC 866 ms
129,908 KB
testcase_20 AC 581 ms
116,700 KB
testcase_21 AC 818 ms
129,392 KB
testcase_22 RE -
testcase_23 AC 440 ms
107,908 KB
testcase_24 AC 95 ms
71,384 KB
testcase_25 AC 359 ms
113,040 KB
testcase_26 AC 424 ms
124,056 KB
testcase_27 AC 408 ms
116,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 63)
md = 10**9+7
# md = 998244353

class UnionFind:
    def __init__(self, n):
        self.table = [-1]*n
        self.mem = [[u] for u in range(n)]
        self.cnt = n

    def root(self, u):
        stack = []
        while self.table[u] >= 0:
            stack.append(u)
            u = self.table[u]
        for v in stack: self.table[v] = u
        return u

    def same(self, u, v):
        return self.root(u) == self.root(v)

    def merge(self, u, v):
        u = self.root(u)
        v = self.root(v)
        if u == v: return False
        su = -self.table[u]
        sv = -self.table[v]
        if su < sv: u, v = v, u
        self.table[u] = -su-sv
        self.table[v] = u
        self.mem[u] += self.mem[v]
        self.mem[v].clear()
        self.cnt -= 1
        return True

    def member(self, u):
        return self.mem[self.root(u)]

    # グループの要素数
    def size(self, u):
        return -self.table[self.root(u)]

    def allmember(self):
        return [m for m in self.mem if m]

from collections import defaultdict

def ConvexHull(xy):
    def NG(x, y):
        x0, y0 = res[-2]
        x1, y1 = res[-1]
        return (x-x0)*(y1-y0)-(x1-x0)*(y-y0) >= 0

    res = []
    xy.sort()
    for x, y in xy:
        while len(res) > 1 and NG(x, y): res.pop()
        res.append((x, y))
    under_n = len(res)
    for x, y in xy[-2::-1]:
        while len(res) > under_n and NG(x, y): res.pop()
        res.append((x, y))
    return res[:-1]

def RotatingCalipers(xy):
    def dist(i, j):
        ix, iy = xy[i]
        jx, jy = xy[j]
        return (ix-jx)**2+(iy-jy)**2

    def vec(i):
        x0, y0 = xy[i]
        x1, y1 = xy[(i+1)%n]
        return x1-x0, y1-y0

    def outer(i, j):
        vix, viy = vec(i)
        vjx, vjy = vec(j)
        return vix*vjy-viy*vjx

    n = len(xy)
    if n < 2: return 0
    if n == 2: return dist(0, 1)**0.5
    res = 0
    i = xy.index(min(xy))
    j = xy.index(max(xy))
    si, sj = i, j
    while i != sj or j != si:
        res = max(res, dist(i, j))
        if outer(i, j) > 0: j = (j+1)%n
        else: i = (i+1)%n
    return res**0.5

n = II()
ij2u = defaultdict(list)
xy = []
for u in range(n):
    x, y = LI()
    i, j = x//7, y//7
    xy.append((x, y))
    ij2u[i, j].append(u)

uf = UnionFind(n)
for i, j in ij2u:
    uu = ij2u[i, j]
    for u, v in zip(uu, uu[1:]): uf.merge(u, v)

def connect(si, sj, i, j):
    for u in ij2u[si, sj]:
        x, y = xy[u]
        for v in ij2u[i, j]:
            s, t = xy[v]
            if (x-s)**2+(y-t)**2 <= 100: return True
    return False

for si, sj in ij2u:
    for i in range(si, si+3):
        for j in range(sj-2 if i > si else sj+1, sj+3):
            if (i, j) not in ij2u: continue
            if connect(si, sj, i, j): uf.merge(ij2u[si, sj][0], ij2u[i, j][0])

ans = 0
for uu in uf.allmember():
    if len(uu) == 1: continue
    nxy = [xy[u] for u in uu]
    nxy = ConvexHull(nxy)
    ans = max(ans, RotatingCalipers(nxy))

print(ans+2)
0