結果

問題 No.168 ものさし
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-20 00:01:07
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,135 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 1,639 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 111,104 KB
最終ジャッジ日時 2024-06-06 14:48:13
合計ジャッジ時間 11,944 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
85,248 KB
testcase_01 AC 81 ms
75,392 KB
testcase_02 AC 81 ms
75,520 KB
testcase_03 AC 79 ms
75,264 KB
testcase_04 AC 79 ms
75,392 KB
testcase_05 AC 82 ms
75,264 KB
testcase_06 AC 81 ms
75,776 KB
testcase_07 AC 79 ms
75,520 KB
testcase_08 AC 79 ms
75,392 KB
testcase_09 AC 97 ms
77,824 KB
testcase_10 AC 115 ms
78,336 KB
testcase_11 AC 294 ms
84,480 KB
testcase_12 AC 801 ms
101,248 KB
testcase_13 AC 1,120 ms
110,976 KB
testcase_14 AC 1,110 ms
111,104 KB
testcase_15 AC 84 ms
75,776 KB
testcase_16 AC 94 ms
78,080 KB
testcase_17 AC 100 ms
77,696 KB
testcase_18 AC 132 ms
79,872 KB
testcase_19 AC 1,079 ms
109,568 KB
testcase_20 AC 1,135 ms
111,104 KB
testcase_21 AC 1,125 ms
110,848 KB
testcase_22 AC 1,132 ms
110,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
P=[map(int,raw_input().split()) for i in range(N)]
edge=[[] for i in range(N)]
for i in range(N):
    for j in range(N):
        if i!=j:
            dx=P[i][0]-P[j][0]
            dy=P[i][1]-P[j][1]
            edge[i].append((dx*dx+dy*dy,j))
for i in range(N):
    edge[i].sort()

left = 0
right = 200000000

while left+1 < right:
    mid=(left+right)/2
    dist=mid*10
    ok=False
    arrived=[False for i in range(N)]
    p=[0]
    arrived[0]=True
    while len(p)!=0 and ok==False:
        cur=p.pop()
        for d,nxt in edge[cur]:
            if d > dist*dist:
                break
            if arrived[nxt]:
                continue
            if nxt==N-1:
                ok=True
                break
            arrived[nxt]=True
            p.append(nxt)
    if ok:
        right = mid
    else:
        left=mid

print right*10
0