結果

問題 No.1473 おでぶなおばけさん
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-19 19:35:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 884 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 131,400 KB
最終ジャッジ日時 2024-11-23 13:57:15
合計ジャッジ時間 20,632 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 812 ms
125,776 KB
testcase_03 AC 518 ms
117,888 KB
testcase_04 AC 521 ms
104,320 KB
testcase_05 AC 230 ms
85,248 KB
testcase_06 AC 884 ms
121,832 KB
testcase_07 AC 627 ms
130,372 KB
testcase_08 AC 861 ms
131,400 KB
testcase_09 AC 646 ms
130,364 KB
testcase_10 AC 311 ms
115,764 KB
testcase_11 AC 319 ms
115,112 KB
testcase_12 AC 310 ms
115,360 KB
testcase_13 AC 234 ms
99,584 KB
testcase_14 AC 177 ms
94,976 KB
testcase_15 AC 300 ms
114,440 KB
testcase_16 AC 269 ms
113,424 KB
testcase_17 AC 105 ms
77,952 KB
testcase_18 AC 118 ms
78,464 KB
testcase_19 AC 353 ms
95,488 KB
testcase_20 AC 489 ms
106,672 KB
testcase_21 AC 624 ms
103,956 KB
testcase_22 AC 358 ms
103,808 KB
testcase_23 AC 300 ms
99,968 KB
testcase_24 AC 301 ms
97,792 KB
testcase_25 AC 330 ms
103,040 KB
testcase_26 AC 337 ms
102,488 KB
testcase_27 AC 174 ms
83,968 KB
testcase_28 AC 428 ms
111,660 KB
testcase_29 AC 378 ms
101,148 KB
testcase_30 AC 431 ms
104,784 KB
testcase_31 AC 629 ms
131,180 KB
testcase_32 AC 828 ms
121,064 KB
testcase_33 AC 477 ms
113,280 KB
testcase_34 AC 330 ms
95,360 KB
testcase_35 AC 312 ms
100,224 KB
testcase_36 AC 278 ms
95,104 KB
testcase_37 AC 295 ms
97,920 KB
testcase_38 AC 128 ms
78,464 KB
testcase_39 AC 273 ms
113,580 KB
testcase_40 AC 266 ms
113,848 KB
testcase_41 AC 310 ms
113,320 KB
testcase_42 AC 269 ms
113,536 KB
testcase_43 AC 322 ms
119,836 KB
testcase_44 AC 323 ms
119,956 KB
testcase_45 AC 321 ms
119,828 KB
testcase_46 AC 301 ms
116,864 KB
testcase_47 AC 357 ms
123,904 KB
testcase_48 AC 393 ms
122,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m=map(int,input().split())
g=[[] for _ in range(n)]
W=[]
for _ in range(m):
    s,t,d=map(int,input().split())
    s-=1;t-=1
    W.append(d)
    g[s].append([t,d])
    g[t].append([s,d])
def bfs(w):
    dst=[-1]*n 
    dst[0]=0
    q=deque()
    q.append(0)
    while q:
        now=q.popleft()
        for to,limit in g[now]:
            if limit<w:
                continue
            if dst[to]!=-1:
                continue
            dst[to]=dst[now]+1
            q.append(to)
    return dst[-1]
W=list(set(W))
W.sort()
r=len(W)
l=0
while r-l>1:
    mid=(r+l)//2
    if bfs(W[mid])==-1:
        r=mid
    else:
        l=mid
print(W[l],bfs(W[l]))
0