結果

問題 No.168 ものさし
ユーザー titiatitia
提出日時 2022-04-25 00:04:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 79,936 KB
最終ジャッジ日時 2024-06-26 10:50:57
合計ジャッジ時間 4,294 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
77,440 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 41 ms
52,736 KB
testcase_03 AC 41 ms
52,736 KB
testcase_04 AC 44 ms
52,736 KB
testcase_05 AC 41 ms
52,864 KB
testcase_06 AC 43 ms
52,992 KB
testcase_07 AC 43 ms
52,608 KB
testcase_08 AC 41 ms
52,480 KB
testcase_09 AC 81 ms
73,984 KB
testcase_10 AC 103 ms
77,044 KB
testcase_11 AC 164 ms
77,696 KB
testcase_12 AC 248 ms
78,464 KB
testcase_13 AC 281 ms
78,720 KB
testcase_14 AC 283 ms
79,232 KB
testcase_15 AC 43 ms
52,864 KB
testcase_16 AC 72 ms
69,120 KB
testcase_17 AC 97 ms
76,800 KB
testcase_18 AC 116 ms
77,016 KB
testcase_19 AC 272 ms
79,280 KB
testcase_20 AC 284 ms
79,936 KB
testcase_21 AC 259 ms
78,684 KB
testcase_22 AC 281 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N=int(input())
P=[tuple(map(int,input().split())) for i in range(N)]

DP=[1<<60]*N
DP[0]=0

Q=[(0,0)]

while Q:
    dis,x=heapq.heappop(Q)

    if DP[x]!=dis:
        continue

    a,b=P[x]

    for i in range(N):
        c,d=P[i]

        d=(a-c)**2+(b-d)**2

        yy=int(d**(1/2))
        score=0

        for j in range(yy-5,yy+5):
            if j<=0:
                continue
            if j*j>=d:
                score=j
                break
        if DP[i]>max(score,DP[x]):
            DP[i]=max(score,DP[x])
            heapq.heappush(Q,(DP[i],i))

print((DP[-1]+9)//10*10)
0