結果

問題 No.1473 おでぶなおばけさん
ユーザー hitonanodehitonanode
提出日時 2021-04-04 16:43:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 1,502 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 42,556 KB
最終ジャッジ日時 2024-06-08 14:45:22
合計ジャッジ時間 18,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 591 ms
39,472 KB
testcase_03 AC 403 ms
35,728 KB
testcase_04 AC 296 ms
26,880 KB
testcase_05 AC 101 ms
16,256 KB
testcase_06 AC 457 ms
36,656 KB
testcase_07 AC 629 ms
41,916 KB
testcase_08 AC 669 ms
42,556 KB
testcase_09 AC 624 ms
41,276 KB
testcase_10 AC 277 ms
24,444 KB
testcase_11 AC 274 ms
23,000 KB
testcase_12 AC 288 ms
24,960 KB
testcase_13 AC 171 ms
17,920 KB
testcase_14 AC 129 ms
16,000 KB
testcase_15 AC 232 ms
20,608 KB
testcase_16 AC 264 ms
23,936 KB
testcase_17 AC 44 ms
11,648 KB
testcase_18 AC 54 ms
12,160 KB
testcase_19 AC 257 ms
24,724 KB
testcase_20 AC 381 ms
32,724 KB
testcase_21 AC 413 ms
30,408 KB
testcase_22 AC 548 ms
32,492 KB
testcase_23 AC 435 ms
30,840 KB
testcase_24 AC 414 ms
29,764 KB
testcase_25 AC 528 ms
35,288 KB
testcase_26 AC 557 ms
36,040 KB
testcase_27 AC 184 ms
20,076 KB
testcase_28 AC 649 ms
40,552 KB
testcase_29 AC 349 ms
30,432 KB
testcase_30 AC 426 ms
33,560 KB
testcase_31 AC 478 ms
39,936 KB
testcase_32 AC 316 ms
37,376 KB
testcase_33 AC 290 ms
31,872 KB
testcase_34 AC 163 ms
21,888 KB
testcase_35 AC 156 ms
22,656 KB
testcase_36 AC 396 ms
28,532 KB
testcase_37 AC 446 ms
31,660 KB
testcase_38 AC 87 ms
14,720 KB
testcase_39 AC 265 ms
24,136 KB
testcase_40 AC 264 ms
24,128 KB
testcase_41 AC 235 ms
21,620 KB
testcase_42 AC 236 ms
21,616 KB
testcase_43 AC 273 ms
32,752 KB
testcase_44 AC 271 ms
32,740 KB
testcase_45 AC 265 ms
32,608 KB
testcase_46 AC 439 ms
33,140 KB
testcase_47 AC 554 ms
37,704 KB
testcase_48 AC 462 ms
35,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Python 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