結果

問題 No.168 ものさし
ユーザー mkawa2mkawa2
提出日時 2020-01-26 10:42:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,543 ms / 2,000 ms
コード長 1,439 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 152,960 KB
最終ジャッジ日時 2024-09-14 10:54:12
合計ジャッジ時間 10,941 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
42,752 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 32 ms
11,136 KB
testcase_03 AC 32 ms
11,136 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 32 ms
11,136 KB
testcase_07 AC 32 ms
11,008 KB
testcase_08 AC 32 ms
11,008 KB
testcase_09 AC 38 ms
11,776 KB
testcase_10 AC 55 ms
14,336 KB
testcase_11 AC 281 ms
39,552 KB
testcase_12 AC 1,085 ms
109,952 KB
testcase_13 AC 1,543 ms
151,040 KB
testcase_14 AC 654 ms
113,792 KB
testcase_15 AC 32 ms
11,008 KB
testcase_16 AC 37 ms
11,520 KB
testcase_17 AC 45 ms
12,800 KB
testcase_18 AC 75 ms
17,408 KB
testcase_19 AC 1,493 ms
148,864 KB
testcase_20 AC 896 ms
129,792 KB
testcase_21 AC 1,513 ms
152,960 KB
testcase_22 AC 992 ms
131,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
from bisect import *
from collections import *
from heapq import *
import math

int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def SI(): return sys.stdin.readline()[:-1]
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]

def main():
    def cald(d):
        s=max(math.ceil(d**0.5)//10*10-20,0)
        for x in range(s,s+100,10):
            if x**2>=d:return x


    n=II()
    xy=[]
    to=defaultdict(list)
    for i in range(n):
        x0,y0=MI()
        for j,(x,y) in enumerate(xy):
            d=(x0-x)**2+(y0-y)**2
            to[i].append((j,d))
            to[j].append((i,d))
        xy.append((x0,y0))
    fin=[False]*n
    hp=[]
    heappush(hp,[0,0])
    while hp:
        d,i=heappop(hp)
        if i==n-1:
            print(cald(d))
            exit()
        if fin[i]:continue
        fin[i]=True
        for j,c in to[i]:
            if fin[j]:continue
            heappush(hp,[max(d,c),j])

main()
0