結果

問題 No.1473 おでぶなおばけさん
ユーザー hitonanodehitonanode
提出日時 2021-04-04 16:43:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 612 ms / 2,000 ms
コード長 1,500 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,212 KB
最終ジャッジ日時 2024-06-08 15:05:53
合計ジャッジ時間 19,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,016 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 588 ms
95,552 KB
testcase_03 AC 444 ms
90,852 KB
testcase_04 AC 339 ms
85,768 KB
testcase_05 AC 208 ms
81,504 KB
testcase_06 AC 452 ms
91,416 KB
testcase_07 AC 581 ms
103,212 KB
testcase_08 AC 612 ms
102,704 KB
testcase_09 AC 540 ms
97,968 KB
testcase_10 AC 317 ms
89,096 KB
testcase_11 AC 321 ms
89,536 KB
testcase_12 AC 326 ms
89,352 KB
testcase_13 AC 223 ms
85,120 KB
testcase_14 AC 173 ms
80,512 KB
testcase_15 AC 289 ms
86,072 KB
testcase_16 AC 314 ms
89,248 KB
testcase_17 AC 68 ms
66,944 KB
testcase_18 AC 80 ms
70,272 KB
testcase_19 AC 364 ms
87,400 KB
testcase_20 AC 432 ms
89,908 KB
testcase_21 AC 493 ms
93,628 KB
testcase_22 AC 555 ms
98,704 KB
testcase_23 AC 441 ms
96,844 KB
testcase_24 AC 476 ms
96,356 KB
testcase_25 AC 519 ms
97,108 KB
testcase_26 AC 528 ms
93,776 KB
testcase_27 AC 243 ms
84,480 KB
testcase_28 AC 553 ms
95,628 KB
testcase_29 AC 409 ms
89,716 KB
testcase_30 AC 475 ms
91,012 KB
testcase_31 AC 368 ms
100,472 KB
testcase_32 AC 290 ms
96,472 KB
testcase_33 AC 315 ms
89,608 KB
testcase_34 AC 258 ms
87,296 KB
testcase_35 AC 219 ms
85,248 KB
testcase_36 AC 406 ms
90,860 KB
testcase_37 AC 439 ms
88,892 KB
testcase_38 AC 162 ms
79,164 KB
testcase_39 AC 320 ms
89,116 KB
testcase_40 AC 323 ms
89,316 KB
testcase_41 AC 315 ms
89,928 KB
testcase_42 AC 313 ms
89,680 KB
testcase_43 AC 201 ms
92,724 KB
testcase_44 AC 202 ms
93,108 KB
testcase_45 AC 203 ms
93,108 KB
testcase_46 AC 477 ms
89,700 KB
testcase_47 AC 548 ms
92,260 KB
testcase_48 AC 470 ms
94,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# PyPy ACになってほしい
from collections import deque
import sys
input = sys.stdin.readline

class DSU:
    def __init__(self, N: int) -> None:
        self.par = list(range(N))
        self.sz = [1] * N

    def find(self, x: int) -> int:
        if self.par[x] != x:
            self.par[x] = self.find(self.par[x])
        return self.par[x]

    def unite(self, x: int, y: int) -> bool:
        x, y = self.find(x), self.find(y)
        if x == y:
            return False
        if self.sz[x] < self.sz[y]:
            x, y = y, x
        self.par[y] = x
        self.sz[x] += self.sz[y]
        return True

    def same(self, x: int, y: int) -> bool:
        return self.find(x) == self.find(y)


def main():
    N, M = map(int, input().split())
    uf = DSU(N)

    edges = []
    for _ in range(M):
        s, t, w = map(int, input().split())
        edges.append((w, s - 1, t - 1))

    edges.sort(reverse=True)
    ret = 1 << 30
    for w, u, v in edges:
        if uf.same(0, N - 1):
            break
        ret = w
        uf.unite(u, v)

    to = [[] for _ in range(N)]
    for w, s, t in edges:
        if w >= ret:
            to[s].append(t), to[t].append(s)

    dist = [1 << 30] * N
    dist[0] = 0
    q = deque([0])
    while q:
        now = q.popleft()
        for nxt in to[now]:
            if dist[nxt] > dist[now] + 1:
                dist[nxt] = dist[now] + 1
                q.append(nxt)
    
    print(ret, dist[N - 1])

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