結果

問題 No.1473 おでぶなおばけさん
ユーザー H20H20
提出日時 2021-04-09 23:03:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 2,138 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 131,424 KB
最終ジャッジ日時 2024-06-25 06:49:40
合計ジャッジ時間 19,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,400 KB
testcase_01 AC 42 ms
54,272 KB
testcase_02 AC 567 ms
125,124 KB
testcase_03 AC 497 ms
121,776 KB
testcase_04 AC 368 ms
103,200 KB
testcase_05 AC 224 ms
83,620 KB
testcase_06 AC 491 ms
117,176 KB
testcase_07 AC 623 ms
129,116 KB
testcase_08 AC 669 ms
130,848 KB
testcase_09 AC 562 ms
127,008 KB
testcase_10 AC 274 ms
97,384 KB
testcase_11 AC 278 ms
97,280 KB
testcase_12 AC 282 ms
97,408 KB
testcase_13 AC 202 ms
88,448 KB
testcase_14 AC 167 ms
86,016 KB
testcase_15 AC 249 ms
93,696 KB
testcase_16 AC 267 ms
96,512 KB
testcase_17 AC 90 ms
77,696 KB
testcase_18 AC 96 ms
78,208 KB
testcase_19 AC 332 ms
93,568 KB
testcase_20 AC 483 ms
116,156 KB
testcase_21 AC 492 ms
106,776 KB
testcase_22 AC 431 ms
119,504 KB
testcase_23 AC 391 ms
113,252 KB
testcase_24 AC 393 ms
110,084 KB
testcase_25 AC 441 ms
117,928 KB
testcase_26 AC 407 ms
116,316 KB
testcase_27 AC 218 ms
87,500 KB
testcase_28 AC 560 ms
131,424 KB
testcase_29 AC 385 ms
107,468 KB
testcase_30 AC 435 ms
111,316 KB
testcase_31 AC 535 ms
128,420 KB
testcase_32 AC 444 ms
118,012 KB
testcase_33 AC 465 ms
111,256 KB
testcase_34 AC 321 ms
96,656 KB
testcase_35 AC 290 ms
94,848 KB
testcase_36 AC 324 ms
99,988 KB
testcase_37 AC 387 ms
114,628 KB
testcase_38 AC 160 ms
81,536 KB
testcase_39 AC 256 ms
95,872 KB
testcase_40 AC 252 ms
95,616 KB
testcase_41 AC 252 ms
96,916 KB
testcase_42 AC 254 ms
97,164 KB
testcase_43 AC 235 ms
103,596 KB
testcase_44 AC 239 ms
103,424 KB
testcase_45 AC 237 ms
103,552 KB
testcase_46 AC 536 ms
111,660 KB
testcase_47 AC 634 ms
120,364 KB
testcase_48 AC 527 ms
115,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# UnionFind 参考は以下のサイト
# https://note.nkmk.me/python-union-find/
from collections import defaultdict
from collections import deque

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

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

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        return -self.parents[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())


N,M = map(int, input().split())
Q = [[0] * 3 for i in range(M)] 
L = []
for i in range(N):
    L.append([])


for i in range(M):
    u,v,d = map(int, input().split())
    Q[i][0]=u-1
    Q[i][1]=v-1
    Q[i][2]=d
    L[u-1].append((v-1,d))
    L[v-1].append((u-1,d))

Q = sorted(Q, key=lambda x: x[2],reverse=True)
W = 0
uf = UnionFind(N)
for u,v,d in Q:
    uf.union(u,v)
    if uf.same(0,N-1):
        W=d
        break


q = deque()
qq = deque()
q.append(0)
qq.append(0)
ALL = [0]*N
while True:
    temp = q.popleft()
    tempq = qq.popleft()
    if temp==N-1:
        print(W,tempq)
        exit()
    for t,d in L[temp]:
        if ALL[t]==0 and W<=d:
            ALL[t]=1
            q.append(t)
            qq.append(tempq+1)
0