結果
問題 | No.168 ものさし |
ユーザー | titia |
提出日時 | 2022-04-25 00:04:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 599 bytes |
コンパイル時間 | 171 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 20,772 KB |
最終ジャッジ日時 | 2024-06-26 10:50:23 |
合計ジャッジ時間 | 9,283 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 31 ms
10,880 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 31 ms
10,752 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
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]//10*10)