結果

問題 No.168 ものさし
ユーザー take4yotake4yo
提出日時 2020-09-18 23:27:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,241 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 71,344 KB
最終ジャッジ日時 2024-06-22 10:26:01
合計ジャッジ時間 2,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
67,420 KB
testcase_01 AC 37 ms
53,488 KB
testcase_02 AC 34 ms
53,020 KB
testcase_03 AC 33 ms
53,072 KB
testcase_04 AC 33 ms
51,992 KB
testcase_05 AC 33 ms
52,768 KB
testcase_06 AC 33 ms
53,672 KB
testcase_07 AC 33 ms
52,632 KB
testcase_08 AC 32 ms
52,936 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 53 ms
66,976 KB
testcase_15 AC 35 ms
52,864 KB
testcase_16 AC 44 ms
63,384 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 60 ms
70,192 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 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 = distance(src, k)
                if dist[k] > dist[src] + dd:
                    dist[k] = 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

    #find max
    ans = 0
    while src != 0:
        pp = parent[src]
        dd = distance(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