結果

問題 No.1473 おでぶなおばけさん
ユーザー tamatotamato
提出日時 2021-04-09 21:40:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 619 ms / 2,000 ms
コード長 1,954 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 117,888 KB
最終ジャッジ日時 2024-06-25 04:40:44
合計ジャッジ時間 17,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,272 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 555 ms
106,112 KB
testcase_03 AC 426 ms
95,780 KB
testcase_04 AC 319 ms
89,060 KB
testcase_05 AC 230 ms
81,440 KB
testcase_06 AC 447 ms
98,048 KB
testcase_07 AC 529 ms
101,760 KB
testcase_08 AC 619 ms
117,888 KB
testcase_09 AC 566 ms
107,200 KB
testcase_10 AC 245 ms
89,088 KB
testcase_11 AC 238 ms
89,344 KB
testcase_12 AC 249 ms
89,088 KB
testcase_13 AC 176 ms
85,504 KB
testcase_14 AC 144 ms
82,304 KB
testcase_15 AC 226 ms
89,268 KB
testcase_16 AC 235 ms
89,216 KB
testcase_17 AC 68 ms
69,888 KB
testcase_18 AC 86 ms
77,696 KB
testcase_19 AC 291 ms
87,664 KB
testcase_20 AC 415 ms
93,792 KB
testcase_21 AC 408 ms
96,160 KB
testcase_22 AC 363 ms
101,680 KB
testcase_23 AC 325 ms
104,844 KB
testcase_24 AC 308 ms
95,928 KB
testcase_25 AC 365 ms
106,076 KB
testcase_26 AC 387 ms
106,236 KB
testcase_27 AC 203 ms
83,840 KB
testcase_28 AC 459 ms
103,780 KB
testcase_29 AC 329 ms
90,880 KB
testcase_30 AC 368 ms
99,068 KB
testcase_31 AC 435 ms
113,200 KB
testcase_32 AC 316 ms
97,680 KB
testcase_33 AC 301 ms
99,816 KB
testcase_34 AC 237 ms
85,264 KB
testcase_35 AC 253 ms
89,276 KB
testcase_36 AC 259 ms
89,744 KB
testcase_37 AC 367 ms
104,044 KB
testcase_38 AC 165 ms
81,460 KB
testcase_39 AC 248 ms
89,088 KB
testcase_40 AC 243 ms
88,832 KB
testcase_41 AC 244 ms
89,036 KB
testcase_42 AC 243 ms
88,916 KB
testcase_43 AC 217 ms
101,688 KB
testcase_44 AC 217 ms
101,684 KB
testcase_45 AC 217 ms
101,812 KB
testcase_46 AC 453 ms
94,080 KB
testcase_47 AC 492 ms
100,364 KB
testcase_48 AC 458 ms
108,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import deque
    input = sys.stdin.buffer.readline

    class UnionFind():
        def __init__(self, n):
            self.n = n
            self.root = [-1] * (n + 1)
            self.rnk = [0] * (n + 1)

        def find_root(self, x):
            while self.root[x] >= 0:
                x = self.root[x]
            return x

        def unite(self, x, y):
            x = self.find_root(x)
            y = self.find_root(y)
            if x == y:
                return
            elif self.rnk[x] > self.rnk[y]:
                self.root[x] += self.root[y]
                self.root[y] = x
            else:
                self.root[y] += self.root[x]
                self.root[x] = y
                if self.rnk[x] == self.rnk[y]:
                    self.rnk[y] += 1

        def isSameGroup(self, x, y):
            return self.find_root(x) == self.find_root(y)

        def size(self, x):
            return -self.root[self.find_root(x)]

    N, M = map(int, input().split())
    E = []
    for _ in range(M):
        E.append(tuple(map(int, input().split())))
    E.sort(key=lambda x: x[2], reverse=True)
    UF = UnionFind(N)
    for a, b, c in E:
        UF.unite(a, b)
        if UF.isSameGroup(1, N):
            w = c
            break
    adj = [[] for _ in range(N+1)]
    for a, b, c in E:
        if c < w:
            break
        adj[a].append(b)
        adj[b].append(a)

    que = deque()
    que.append(1)
    seen = [-1] * (N+1)
    seen[1] = 0
    par = [0] * (N+1)
    child = [[] for _ in range(N+1)]
    seq = []
    while que:
        v = que.popleft()
        seq.append(v)
        for u in adj[v]:
            if seen[u] == -1:
                seen[u] = seen[v] + 1
                par[u] = v
                child[v].append(u)
                que.append(u)
    seq.reverse()
    print(w, seen[N])


if __name__ == '__main__':
    main()
0