結果

問題 No.1473 おでぶなおばけさん
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-05-14 16:00:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 891 ms / 2,000 ms
コード長 839 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,628 KB
実行使用メモリ 138,876 KB
最終ジャッジ日時 2024-10-01 20:34:40
合計ジャッジ時間 19,808 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,400 KB
testcase_01 AC 47 ms
54,144 KB
testcase_02 AC 705 ms
125,292 KB
testcase_03 AC 381 ms
116,712 KB
testcase_04 AC 435 ms
105,944 KB
testcase_05 AC 221 ms
81,536 KB
testcase_06 AC 627 ms
115,056 KB
testcase_07 AC 567 ms
130,960 KB
testcase_08 AC 891 ms
131,232 KB
testcase_09 AC 577 ms
132,096 KB
testcase_10 AC 220 ms
86,272 KB
testcase_11 AC 229 ms
86,656 KB
testcase_12 AC 236 ms
86,656 KB
testcase_13 AC 172 ms
82,944 KB
testcase_14 AC 158 ms
81,024 KB
testcase_15 AC 224 ms
85,376 KB
testcase_16 AC 206 ms
84,736 KB
testcase_17 AC 96 ms
76,928 KB
testcase_18 AC 104 ms
77,184 KB
testcase_19 AC 242 ms
85,248 KB
testcase_20 AC 346 ms
119,728 KB
testcase_21 AC 432 ms
100,944 KB
testcase_22 AC 373 ms
130,468 KB
testcase_23 AC 317 ms
129,504 KB
testcase_24 AC 321 ms
121,476 KB
testcase_25 AC 676 ms
112,124 KB
testcase_26 AC 682 ms
110,368 KB
testcase_27 AC 228 ms
83,840 KB
testcase_28 AC 774 ms
126,920 KB
testcase_29 AC 447 ms
101,356 KB
testcase_30 AC 594 ms
105,412 KB
testcase_31 AC 502 ms
138,876 KB
testcase_32 AC 463 ms
124,016 KB
testcase_33 AC 370 ms
114,508 KB
testcase_34 AC 257 ms
97,376 KB
testcase_35 AC 233 ms
92,160 KB
testcase_36 AC 399 ms
95,488 KB
testcase_37 AC 468 ms
111,008 KB
testcase_38 AC 166 ms
79,232 KB
testcase_39 AC 184 ms
85,120 KB
testcase_40 AC 183 ms
85,248 KB
testcase_41 AC 264 ms
87,516 KB
testcase_42 AC 263 ms
87,280 KB
testcase_43 AC 260 ms
99,120 KB
testcase_44 AC 264 ms
98,996 KB
testcase_45 AC 268 ms
99,000 KB
testcase_46 AC 323 ms
111,864 KB
testcase_47 AC 494 ms
120,180 KB
testcase_48 AC 470 ms
114,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import heapq
import math

N,M=map(int,input().split())

G = collections.defaultdict(list)

for _ in range(M):
    S,T,D = map(int, input().split())
    G[S-1].append((T-1,D))
    G[T-1].append((S-1,D))

def bfs(max_w):
    que = collections.deque([(0,0)]) # index, something val
    visited = [-1]*N
    while que:
        i, c = que.popleft() # queはFIFO
        if visited[i] >= 0:
            continue
        visited[i] = c
        for j, d in G[i]:
            if visited[j] == -1 and max_w <= d: # まだ未踏のノードであれば
                que.append((j,c+1)) # 自分の値に+1してqueに入れる
    return visited[-1]

ok = 0
ng = 1 << 64
while(True):
    mid = (ok+ng) // 2
    if bfs(mid) != -1:
        ok = mid
    else:
        ng = mid
    if ng - ok == 1:
        break
print(ok, bfs(ok))
0