結果

問題 No.1473 おでぶなおばけさん
ユーザー wolgnikwolgnik
提出日時 2021-04-09 21:41:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,339 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-06-25 04:45:19
合計ジャッジ時間 21,015 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,888 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 657 ms
102,012 KB
testcase_03 AC 431 ms
102,928 KB
testcase_04 AC 520 ms
89,424 KB
testcase_05 AC 202 ms
79,872 KB
testcase_06 AC 786 ms
96,692 KB
testcase_07 AC 656 ms
101,944 KB
testcase_08 AC 1,050 ms
101,380 KB
testcase_09 AC 570 ms
105,340 KB
testcase_10 AC 192 ms
83,768 KB
testcase_11 AC 213 ms
83,328 KB
testcase_12 AC 188 ms
83,584 KB
testcase_13 AC 129 ms
80,128 KB
testcase_14 AC 124 ms
79,872 KB
testcase_15 AC 176 ms
83,456 KB
testcase_16 AC 151 ms
82,944 KB
testcase_17 AC 76 ms
71,424 KB
testcase_18 AC 93 ms
77,440 KB
testcase_19 AC 234 ms
84,352 KB
testcase_20 AC 359 ms
97,792 KB
testcase_21 AC 403 ms
92,372 KB
testcase_22 AC 289 ms
106,880 KB
testcase_23 AC 266 ms
105,036 KB
testcase_24 AC 260 ms
101,068 KB
testcase_25 AC 1,339 ms
98,668 KB
testcase_26 AC 1,331 ms
98,324 KB
testcase_27 AC 203 ms
81,404 KB
testcase_28 AC 839 ms
103,940 KB
testcase_29 AC 473 ms
93,284 KB
testcase_30 AC 716 ms
94,336 KB
testcase_31 AC 535 ms
109,056 KB
testcase_32 AC 495 ms
99,792 KB
testcase_33 AC 393 ms
95,104 KB
testcase_34 AC 269 ms
87,296 KB
testcase_35 AC 227 ms
88,064 KB
testcase_36 AC 423 ms
88,704 KB
testcase_37 AC 689 ms
97,132 KB
testcase_38 AC 127 ms
78,336 KB
testcase_39 AC 156 ms
82,816 KB
testcase_40 AC 150 ms
82,944 KB
testcase_41 AC 162 ms
86,556 KB
testcase_42 AC 155 ms
86,048 KB
testcase_43 AC 194 ms
95,488 KB
testcase_44 AC 186 ms
95,744 KB
testcase_45 AC 193 ms
96,000 KB
testcase_46 AC 332 ms
95,408 KB
testcase_47 AC 414 ms
99,584 KB
testcase_48 AC 405 ms
95,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque as dq
input = sys.stdin.readline
N, M = map(int, input().split())
e = [[] for _ in range(N + 1)]
for _ in range(M):
  u, v, c = map(int, input().split())
  e[u].append((v, c))
  e[v].append((u, c))

def check(w):
  Q = dq([1])
  dp = [-1] * (N + 1)
  dp[1] = 0
  while len(Q):
    x = Q.popleft()
    for y, d in e[x]:
      if dp[y] != -1: continue
      if d >= w:
        dp[y] = dp[x] + 1
        Q.append(y)
  return dp[N]

ok = 0
ng = 10 ** 9 + 1
while ng - ok > 1:
  m = (ok + ng) // 2
  if check(m) != -1: ok = m
  else: ng = m
print(ok, check(ok))
0