結果

問題 No.2179 Planet Traveler
ユーザー mkawa2mkawa2
提出日時 2023-01-06 23:27:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 3,000 ms
コード長 1,632 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 71,936 KB
最終ジャッジ日時 2024-05-07 23:20:46
合計ジャッジ時間 3,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,336 KB
testcase_01 AC 35 ms
52,608 KB
testcase_02 AC 33 ms
52,224 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 36 ms
52,608 KB
testcase_07 AC 37 ms
52,608 KB
testcase_08 AC 42 ms
60,416 KB
testcase_09 AC 52 ms
64,256 KB
testcase_10 AC 42 ms
60,288 KB
testcase_11 AC 46 ms
62,720 KB
testcase_12 AC 53 ms
66,304 KB
testcase_13 AC 53 ms
65,536 KB
testcase_14 AC 158 ms
67,072 KB
testcase_15 AC 242 ms
67,328 KB
testcase_16 AC 215 ms
66,944 KB
testcase_17 AC 130 ms
70,912 KB
testcase_18 AC 301 ms
71,552 KB
testcase_19 AC 75 ms
70,784 KB
testcase_20 AC 62 ms
67,712 KB
testcase_21 AC 294 ms
71,936 KB
testcase_22 AC 83 ms
70,656 KB
testcase_23 AC 67 ms
69,504 KB
testcase_24 AC 126 ms
70,400 KB
testcase_25 AC 62 ms
68,096 KB
testcase_26 AC 81 ms
70,912 KB
testcase_27 AC 59 ms
67,712 KB
testcase_28 AC 71 ms
70,400 KB
testcase_29 AC 136 ms
71,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(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 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

def binary_search(l, r, minimize):
    if minimize: l -= 1
    else: r += 1
    while l+1 < r:
        m = (l+r)//2
        if ok(m) ^ minimize: l = m
        else: r = m
    if minimize: return r
    return l

def ok(m):
    def move(i, j):
        x1, y1, t1 = xyt[i]
        x2, y2, t2 = xyt[j]
        if t1 == t2:
            if (x2-x1)**2+(y2-y1)**2 > m: return False
        else:
            R = x1**2+y1**2
            r = x2**2+y2**2
            if R+r-m < 0:return True
            if (R+r-m)**2 > 4*R*r:return False
        return True

    st = [0]
    vis = [0]*n
    vis[0] = 1
    while st:
        i = st.pop()
        for j in range(n):
            if vis[j]: continue
            if not move(i, j): continue
            if j == n-1: return True
            vis[j] = 1
            st.append(j)
    return False

n = II()
xyt = LLI(n)

ans = binary_search(0, 3200000005, True)
print(ans)
0