結果

問題 No.168 ものさし
ユーザー take4yotake4yo
提出日時 2020-09-18 23:48:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 1,453 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 73,168 KB
最終ジャッジ日時 2024-06-22 10:53:22
合計ジャッジ時間 2,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
70,392 KB
testcase_01 AC 37 ms
53,308 KB
testcase_02 AC 36 ms
53,284 KB
testcase_03 AC 38 ms
53,548 KB
testcase_04 AC 36 ms
52,804 KB
testcase_05 AC 37 ms
53,328 KB
testcase_06 AC 37 ms
52,724 KB
testcase_07 AC 38 ms
53,392 KB
testcase_08 AC 37 ms
53,304 KB
testcase_09 AC 47 ms
62,820 KB
testcase_10 AC 56 ms
65,604 KB
testcase_11 AC 65 ms
73,020 KB
testcase_12 AC 83 ms
73,168 KB
testcase_13 AC 87 ms
72,444 KB
testcase_14 AC 61 ms
66,984 KB
testcase_15 AC 37 ms
52,648 KB
testcase_16 AC 49 ms
62,656 KB
testcase_17 AC 54 ms
65,748 KB
testcase_18 AC 56 ms
66,272 KB
testcase_19 AC 87 ms
72,852 KB
testcase_20 AC 72 ms
72,240 KB
testcase_21 AC 86 ms
72,096 KB
testcase_22 AC 72 ms
71,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())
MAXDIST = 9*10**18 + 1

pos = []
for i in range(N):
    x, y = map(int, input().split())
    pos.append((x, y))

def distance(a, b):
    x0, y0 = pos[a]
    x1, y1 = pos[b]
    dd = (x1 - x0)*(x1 - x0) + (y1 - y0)*(y1 - y0)
    return math.sqrt(dd)
    #return dd

def distance2(a, b):
    x0, y0 = pos[a]
    x1, y1 = pos[b]
    dd = (x1 - x0)*(x1 - x0) + (y1 - y0)*(y1 - y0)
    #return math.sqrt(dd)
    return dd

def prim():
    parent = [-1]*(N+1)
    intree = [0]*(N+1)
    dist = [MAXDIST]*(N+1)


    src = 0
    dist[src] = 0
    while src >= 0 and src != N-1:
        intree[src] = 1
        mind = MAXDIST
        nxt = -1
        for k in range(N):
            if intree[k] == 0:
                dd = distance2(src, k)
                if dist[k] > max(dist[src], dd):
                    dist[k] = max(dist[src], dd)
                    parent[k] = src
                if dist[k] < mind:
                    mind = dist[k]
                    nxt = k
        #if nxt >= 0: parent[nxt] = src
        src = nxt

    if src < 0: #not found??
        return MAXDIST

    return dist[N-1]
    # #find max
    # ans = 0
    # while src != 0:
    #     pp = parent[src]
    #     dd = distance2(src, pp)
    #     if ans < dd:
    #         ans = dd
    #
    #     src = pp
    #
    # return ans

prm = prim()
ans = int(math.sqrt(prm))
while ans*ans < prm:
    ans = ans + 1

ans = math.ceil(ans/10) * 10
print(ans)
0