結果

問題 No.1473 おでぶなおばけさん
ユーザー 👑 KazunKazun
提出日時 2021-04-09 23:59:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 611 ms / 2,000 ms
コード長 2,801 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 107,896 KB
最終ジャッジ日時 2024-06-25 12:46:01
合計ジャッジ時間 17,130 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,400 KB
testcase_01 AC 46 ms
54,144 KB
testcase_02 AC 474 ms
106,488 KB
testcase_03 AC 426 ms
98,484 KB
testcase_04 AC 330 ms
90,356 KB
testcase_05 AC 198 ms
81,036 KB
testcase_06 AC 395 ms
95,436 KB
testcase_07 AC 580 ms
104,168 KB
testcase_08 AC 611 ms
107,896 KB
testcase_09 AC 515 ms
101,304 KB
testcase_10 AC 230 ms
90,128 KB
testcase_11 AC 237 ms
89,692 KB
testcase_12 AC 230 ms
90,472 KB
testcase_13 AC 170 ms
85,512 KB
testcase_14 AC 135 ms
81,204 KB
testcase_15 AC 234 ms
90,172 KB
testcase_16 AC 234 ms
89,568 KB
testcase_17 AC 70 ms
69,248 KB
testcase_18 AC 77 ms
72,192 KB
testcase_19 AC 285 ms
88,028 KB
testcase_20 AC 425 ms
99,248 KB
testcase_21 AC 394 ms
96,108 KB
testcase_22 AC 337 ms
98,660 KB
testcase_23 AC 344 ms
95,724 KB
testcase_24 AC 312 ms
93,652 KB
testcase_25 AC 329 ms
98,516 KB
testcase_26 AC 323 ms
95,828 KB
testcase_27 AC 189 ms
84,056 KB
testcase_28 AC 482 ms
103,088 KB
testcase_29 AC 321 ms
94,752 KB
testcase_30 AC 331 ms
96,708 KB
testcase_31 AC 408 ms
103,664 KB
testcase_32 AC 304 ms
98,688 KB
testcase_33 AC 339 ms
101,340 KB
testcase_34 AC 261 ms
89,816 KB
testcase_35 AC 214 ms
88,068 KB
testcase_36 AC 270 ms
89,756 KB
testcase_37 AC 318 ms
95,260 KB
testcase_38 AC 143 ms
79,384 KB
testcase_39 AC 229 ms
89,568 KB
testcase_40 AC 235 ms
89,568 KB
testcase_41 AC 225 ms
89,880 KB
testcase_42 AC 227 ms
90,264 KB
testcase_43 AC 188 ms
92,676 KB
testcase_44 AC 185 ms
92,796 KB
testcase_45 AC 190 ms
93,056 KB
testcase_46 AC 384 ms
93,624 KB
testcase_47 AC 520 ms
101,952 KB
testcase_48 AC 400 ms
94,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Union_Find():
    def __init__(self,N):
        """0,1,...,n-1を要素として初期化する.

        N:要素数
        """
        self.n=N
        self.parents=[-1]*N
        self.rank=[0]*N

    def find(self, x):
        """要素xの属している族を調べる.

        x:要素
        """
        V=[]
        while self.parents[x]>=0:
            V.append(x)
            x=self.parents[x]

        for v in V:
            self.parents[v]=x
        return x

    def union(self, x, y):
        """要素x,yを同一視する.

        x,y:要素
        """
        x=self.find(x)
        y=self.find(y)

        if x==y:
            return

        if self.rank[x]<self.rank[y]:
            x,y=y,x

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

        if self.rank[x]==self.rank[y]:
            self.rank[x]+=1

    def size(self, x):
        """要素xの属している要素の数.

        x:要素
        """
        return -self.parents[self.find(x)]

    def same(self, x, y):
        """要素x,yは同一視されているか?

        x,y:要素
        """
        return self.find(x) == self.find(y)

    def members(self, x):
        """要素xが属している族の要素.
        ※族の要素の個数が欲しいときはsizeを使うこと!!

        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):
        """全ての族の出力
        """
        X={r:[] for r in self.roots()}
        for k in range(self.n):
            X[self.find(k)].append(k)
        return X

    def refresh(self):
        for i in range(self.n):
            _=self.find(i)

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())

    def __repr__(self):
        return self.__str__()
#================================================
from collections import deque
import sys
input=sys.stdin.readline

N,M=map(int,input().split())
E=[]
for _ in range(M):
    s,t,d=map(int,input().split())
    E.append((s,t,d))

E.sort(key=lambda x:x[-1],reverse=True)
U=Union_Find(N+1)
for s,t,d in E:
    U.union(s,t)
    if U.same(1,N):
        w=d
        break

A=[[] for _ in range(N+1)]
for s,t,d in E:
    if w<=d:
        A[s].append(t)
        A[t].append(s)

T=[-1]*(N+1)
T[1]=0
Q=deque([1])
while True:
    x=Q.popleft()
    for y in A[x]:
        if T[y]==-1:
            Q.append(y)
            T[y]=T[x]+1

        if y==N:
            print(w,T[y])
            exit()
0