結果

問題 No.1473 おでぶなおばけさん
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-09 21:43:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,521 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 117,072 KB
最終ジャッジ日時 2024-06-25 04:48:36
合計ジャッジ時間 17,735 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,888 KB
testcase_01 AC 44 ms
54,016 KB
testcase_02 AC 547 ms
113,708 KB
testcase_03 AC 465 ms
110,188 KB
testcase_04 AC 386 ms
98,208 KB
testcase_05 AC 221 ms
82,780 KB
testcase_06 AC 450 ms
107,636 KB
testcase_07 AC 637 ms
116,612 KB
testcase_08 AC 661 ms
116,940 KB
testcase_09 AC 577 ms
117,072 KB
testcase_10 AC 194 ms
93,420 KB
testcase_11 AC 192 ms
93,232 KB
testcase_12 AC 189 ms
93,524 KB
testcase_13 AC 134 ms
84,224 KB
testcase_14 AC 109 ms
82,560 KB
testcase_15 AC 202 ms
96,128 KB
testcase_16 AC 196 ms
93,220 KB
testcase_17 AC 57 ms
66,688 KB
testcase_18 AC 61 ms
68,992 KB
testcase_19 AC 292 ms
90,348 KB
testcase_20 AC 499 ms
103,904 KB
testcase_21 AC 471 ms
102,544 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 557 ms
115,892 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 548 ms
113,476 KB
testcase_32 AC 391 ms
108,760 KB
testcase_33 AC 454 ms
104,040 KB
testcase_34 AC 340 ms
90,772 KB
testcase_35 AC 260 ms
90,212 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 190 ms
93,384 KB
testcase_40 AC 190 ms
93,448 KB
testcase_41 AC 196 ms
94,032 KB
testcase_42 AC 200 ms
94,108 KB
testcase_43 AC 162 ms
97,228 KB
testcase_44 AC 162 ms
97,024 KB
testcase_45 AC 161 ms
97,420 KB
testcase_46 AC 475 ms
102,208 KB
testcase_47 AC 601 ms
112,044 KB
testcase_48 AC 489 ms
104,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [0]*n

    def Find(self, x):
        if self.par[x] < 0:
            return x
        else:
            self.par[x] = self.Find(self.par[x])
            return self.par[x]

    def Unite(self, x, y):
        x = self.Find(x)
        y = self.Find(y)

        if x != y:
            if self.rank[x] < self.rank[y]:
                self.par[y] += self.par[x]
                self.par[x] = y
            else:
                self.par[x] += self.par[y]
                self.par[y] = x
                if self.rank[x] == self.rank[y]:
                    self.rank[x] += 1

    def Same(self, x, y):
        return self.Find(x) == self.Find(y)

    def Size(self, x):
        return -self.par[self.Find(x)]

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n, m = map(int, input().split())
edge = []
for i in range(m):
    s, t, d = map(int, input().split())
    s, t = s-1, t-1
    edge.append((s, t, d))

edge.sort(key=lambda x: -x[2])
M = 10**18
uf = UnionFind(n)
g = [[] for i in range(n)]
for s, t, d in edge:
    if uf.Same(0, n-1):
        break
    else:
        uf.Unite(s, t)
        M = min(M, d)
        g[s].append(t)
        g[t].append(s)
#print(M)
from collections import deque
q = deque([])
q.append(0)
dist = [-1]*n
dist[0] = 0
while q:
    v = q.popleft()
    for u in g[v]:
        if dist[u] == -1:
            q.append(u)
            dist[u] = dist[v]+ 1
print(M, dist[n-1])
0