結果

問題 No.168 ものさし
ユーザー butamanbutaman
提出日時 2020-10-02 11:09:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,198 ms / 2,000 ms
コード長 1,394 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 156,972 KB
最終ジャッジ日時 2024-07-08 04:04:25
合計ジャッジ時間 10,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
92,928 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 40 ms
52,736 KB
testcase_09 AC 51 ms
60,928 KB
testcase_10 AC 64 ms
64,384 KB
testcase_11 AC 229 ms
93,184 KB
testcase_12 AC 744 ms
127,940 KB
testcase_13 AC 1,198 ms
156,248 KB
testcase_14 AC 1,157 ms
156,500 KB
testcase_15 AC 42 ms
52,096 KB
testcase_16 AC 49 ms
60,544 KB
testcase_17 AC 56 ms
62,848 KB
testcase_18 AC 82 ms
67,840 KB
testcase_19 AC 1,139 ms
156,972 KB
testcase_20 AC 1,176 ms
156,596 KB
testcase_21 AC 1,165 ms
156,196 KB
testcase_22 AC 1,190 ms
156,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self):
        self.N = 0
        self.parent = []
        self.rank = []

    def __init__(self, NN):
        self.N = NN + 1
        self.parent = [i for i in range(self.N)]
        self.rank = [0]*self.N

    def root(self, aa):
        if self.parent[aa] == aa:
            return aa
        self.parent[aa] = self.root(self.parent[aa])
        return self.parent[aa]

    def sameroot(self, aa, bb):
        return self.root(aa) == self.root(bb)

    def unite(self, aa, bb):
        aa = self.root(aa)
        bb = self.root(bb)
        if aa == bb: #no need to unite anymore
            return

        if self.rank[aa] < self.rank[bb]:
            aa, bb = bb, aa
        if self.rank[aa] == self.rank[bb]:
            self.rank[aa] += 1
        self.parent[bb] = aa


N = int(input())
point = []
dist = []
for i in range(N):
    x, y = map(int, input().split())
    point.append((x, y))
    for k in range(i):
        xk, yk = point[k]
        dd = (xk-x)*(xk-x) + (yk-y)*(yk-y)
        dist.append((dd, i, k))

#sorted from short to long
sortedD = sorted(dist, key=lambda tup: tup[0])
cnt = 0
tree = UnionFind(N)
for (d, i, k) in sortedD:
    tree.unite(i, k)
    #connected? and be the shortest path
    if tree.sameroot(0, N-1):
        dd = int(d**0.5)
        while dd*dd < d:
            dd += 1
        print(((dd + 9)//10)*10)
        exit(0)
0