結果

問題 No.96 圏外です。
ユーザー mkawa2mkawa2
提出日時 2023-09-27 21:27:56
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 3,748 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 87,236 KB
実行使用メモリ 131,472 KB
最終ジャッジ日時 2023-09-27 21:28:13
合計ジャッジ時間 14,660 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
71,800 KB
testcase_01 AC 80 ms
71,324 KB
testcase_02 AC 77 ms
72,160 KB
testcase_03 AC 80 ms
71,328 KB
testcase_04 AC 109 ms
78,628 KB
testcase_05 AC 113 ms
78,328 KB
testcase_06 AC 126 ms
80,776 KB
testcase_07 AC 182 ms
82,656 KB
testcase_08 AC 149 ms
83,828 KB
testcase_09 AC 175 ms
86,272 KB
testcase_10 AC 348 ms
89,628 KB
testcase_11 AC 249 ms
92,356 KB
testcase_12 AC 235 ms
96,136 KB
testcase_13 AC 532 ms
100,152 KB
testcase_14 RE -
testcase_15 AC 877 ms
113,384 KB
testcase_16 AC 657 ms
120,648 KB
testcase_17 AC 436 ms
131,472 KB
testcase_18 AC 827 ms
130,384 KB
testcase_19 AC 786 ms
130,148 KB
testcase_20 AC 531 ms
116,524 KB
testcase_21 AC 763 ms
129,316 KB
testcase_22 RE -
testcase_23 AC 427 ms
107,660 KB
testcase_24 AC 80 ms
71,740 KB
testcase_25 AC 312 ms
113,632 KB
testcase_26 AC 444 ms
123,588 KB
testcase_27 AC 356 ms
115,760 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()
if n==0:
    print(1)
    exit()

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