結果

問題 No.1473 おでぶなおばけさん
ユーザー ntudantuda
提出日時 2022-03-12 15:29:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 710 ms / 2,000 ms
コード長 1,261 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 131,840 KB
最終ジャッジ日時 2024-09-16 22:39:27
合計ジャッジ時間 20,334 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 46 ms
53,888 KB
testcase_02 AC 710 ms
125,696 KB
testcase_03 AC 535 ms
118,912 KB
testcase_04 AC 373 ms
103,424 KB
testcase_05 AC 269 ms
82,944 KB
testcase_06 AC 523 ms
111,872 KB
testcase_07 AC 583 ms
128,256 KB
testcase_08 AC 651 ms
131,840 KB
testcase_09 AC 543 ms
125,184 KB
testcase_10 AC 277 ms
86,784 KB
testcase_11 AC 266 ms
86,528 KB
testcase_12 AC 265 ms
86,912 KB
testcase_13 AC 194 ms
82,432 KB
testcase_14 AC 161 ms
81,280 KB
testcase_15 AC 256 ms
89,600 KB
testcase_16 AC 258 ms
86,784 KB
testcase_17 AC 95 ms
76,800 KB
testcase_18 AC 103 ms
76,928 KB
testcase_19 AC 352 ms
88,704 KB
testcase_20 AC 555 ms
109,696 KB
testcase_21 AC 501 ms
97,536 KB
testcase_22 AC 466 ms
117,376 KB
testcase_23 AC 361 ms
112,000 KB
testcase_24 AC 428 ms
107,648 KB
testcase_25 AC 477 ms
116,480 KB
testcase_26 AC 487 ms
117,888 KB
testcase_27 AC 253 ms
84,224 KB
testcase_28 AC 524 ms
124,672 KB
testcase_29 AC 411 ms
101,888 KB
testcase_30 AC 459 ms
105,344 KB
testcase_31 AC 583 ms
125,056 KB
testcase_32 AC 503 ms
114,048 KB
testcase_33 AC 486 ms
107,136 KB
testcase_34 AC 393 ms
91,648 KB
testcase_35 AC 304 ms
90,496 KB
testcase_36 AC 362 ms
96,128 KB
testcase_37 AC 390 ms
114,560 KB
testcase_38 AC 196 ms
80,640 KB
testcase_39 AC 269 ms
86,656 KB
testcase_40 AC 271 ms
86,528 KB
testcase_41 AC 264 ms
86,656 KB
testcase_42 AC 261 ms
86,912 KB
testcase_43 AC 231 ms
96,128 KB
testcase_44 AC 226 ms
96,384 KB
testcase_45 AC 231 ms
96,000 KB
testcase_46 AC 447 ms
105,344 KB
testcase_47 AC 514 ms
111,488 KB
testcase_48 AC 470 ms
109,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100010)

def root(x):
    if P[x] < 0:
        return x
    else:
        P[x] = root(P[x])  # 経路圧縮
        return P[x]

def unite(x, y):
    x = root(x)
    y = root(y)
    if x == y: return
    P[x] += P[y]
    P[y] = x

def same(x, y):
    return root(x) == root(y)

n, m = map(int, input().split())
STD = [list(map(int, input().split())) for _ in range(m)]
STD.sort(key=lambda x: (-x[2]))
P = [-1] * (n + 1)
E = [[] for _ in range(n + 1)]
nowd = 10 ** 10
flag = 1
for i, (s, t, d) in enumerate(STD):
    if flag == 1:
        if nowd > d:
            nowd = d
        unite(s, t)
        E[s].append(t)
        E[t].append(s)
        if same(1, n):
            flag = 0
    else:
        if d != nowd:
            break
        else:
            unite(s, t)
            E[s].append(t)
            E[t].append(s)

from collections import deque

q1 = deque()
cnt = 0
q1.append(1)
visited = [0] * (n + 1)
visited[1] = 1
while len(q1) > 0:
    cnt += 1
    q2 = deque()
    while len(q1) > 0:
        p = q1.pop()
        for x in E[p]:
            if x == n:
                print(nowd, cnt)
                exit()
            if visited[x] == 0:
                visited[x] = 1
                q2.append(x)
    q1 = q2
0