結果
問題 | No.168 ものさし |
ユーザー | chocorusk |
提出日時 | 2020-09-14 09:45:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 739 ms / 2,000 ms |
コード長 | 670 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-06-22 00:39:37 |
合計ジャッジ時間 | 6,122 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 281 ms
10,752 KB |
testcase_01 | AC | 28 ms
10,880 KB |
testcase_02 | AC | 28 ms
10,752 KB |
testcase_03 | AC | 27 ms
10,880 KB |
testcase_04 | AC | 25 ms
10,880 KB |
testcase_05 | AC | 26 ms
10,880 KB |
testcase_06 | AC | 25 ms
10,752 KB |
testcase_07 | AC | 30 ms
10,880 KB |
testcase_08 | AC | 27 ms
10,752 KB |
testcase_09 | AC | 33 ms
10,880 KB |
testcase_10 | AC | 50 ms
10,752 KB |
testcase_11 | AC | 240 ms
10,752 KB |
testcase_12 | AC | 627 ms
11,008 KB |
testcase_13 | AC | 733 ms
11,136 KB |
testcase_14 | AC | 42 ms
11,136 KB |
testcase_15 | AC | 28 ms
10,752 KB |
testcase_16 | AC | 36 ms
10,752 KB |
testcase_17 | AC | 40 ms
10,752 KB |
testcase_18 | AC | 55 ms
10,880 KB |
testcase_19 | AC | 739 ms
10,880 KB |
testcase_20 | AC | 233 ms
11,008 KB |
testcase_21 | AC | 701 ms
11,008 KB |
testcase_22 | AC | 269 ms
11,136 KB |
ソースコード
import sys read=sys.stdin.buffer.read readline=sys.stdin.buffer.readline readlines=sys.stdin.buffer.readlines n=int(readline()) xy=list(map(int, read().split())) x=xy[::2] y=xy[1::2] INF=3*10**18 d=[INF]*n d[0]=0 dq=[INF]*n dq[0]=0 for _ in range(n): i=dq.index(min(dq)) d1=dq[i] if i==n-1 or d1==INF: break x1, y1=x[i], y[i] dq[i]=INF for j, (x2, y2) in enumerate(zip(x, y)): d2=max(d1, (x1-x2)*(x1-x2)+(y1-y2)*(y1-y2)) if d[j]>d2: d[j]=d2 if dq[j]>d2: dq[j]=d2 mn=d[n-1] l, r=0, 2*10**8 while r-l>1: m=(l+r)//2 if 100*m*m>=mn: r=m else: l=m print(10*r)