結果

問題 No.1473 おでぶなおばけさん
ユーザー DrDrpilotDrDrpilot
提出日時 2022-05-08 16:21:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 697 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 53,180 KB
最終ジャッジ日時 2024-07-08 04:43:38
合計ジャッジ時間 50,621 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 1,944 ms
51,872 KB
testcase_03 AC 1,192 ms
47,452 KB
testcase_04 AC 1,011 ms
32,640 KB
testcase_05 AC 357 ms
20,352 KB
testcase_06 AC 1,883 ms
49,432 KB
testcase_07 AC 1,574 ms
53,080 KB
testcase_08 TLE -
testcase_09 AC 1,378 ms
53,080 KB
testcase_10 AC 1,466 ms
41,932 KB
testcase_11 AC 1,620 ms
40,648 KB
testcase_12 AC 1,408 ms
42,380 KB
testcase_13 AC 705 ms
28,020 KB
testcase_14 AC 487 ms
23,936 KB
testcase_15 AC 1,218 ms
37,488 KB
testcase_16 AC 973 ms
40,672 KB
testcase_17 AC 73 ms
13,056 KB
testcase_18 AC 103 ms
14,080 KB
testcase_19 AC 1,107 ms
32,768 KB
testcase_20 AC 1,076 ms
38,144 KB
testcase_21 AC 1,753 ms
40,576 KB
testcase_22 AC 981 ms
38,912 KB
testcase_23 AC 822 ms
35,376 KB
testcase_24 AC 826 ms
34,688 KB
testcase_25 AC 1,007 ms
41,216 KB
testcase_26 AC 1,063 ms
42,496 KB
testcase_27 AC 387 ms
23,808 KB
testcase_28 AC 1,055 ms
46,848 KB
testcase_29 AC 959 ms
37,760 KB
testcase_30 AC 1,127 ms
42,112 KB
testcase_31 AC 1,616 ms
52,084 KB
testcase_32 AC 1,890 ms
50,540 KB
testcase_33 AC 1,111 ms
40,184 KB
testcase_34 AC 662 ms
27,392 KB
testcase_35 AC 637 ms
29,568 KB
testcase_36 AC 796 ms
34,560 KB
testcase_37 AC 797 ms
35,840 KB
testcase_38 AC 140 ms
15,872 KB
testcase_39 AC 1,076 ms
41,248 KB
testcase_40 AC 987 ms
41,132 KB
testcase_41 AC 692 ms
38,064 KB
testcase_42 AC 699 ms
38,012 KB
testcase_43 AC 683 ms
47,124 KB
testcase_44 AC 686 ms
47,232 KB
testcase_45 AC 689 ms
47,260 KB
testcase_46 AC 808 ms
38,964 KB
testcase_47 AC 983 ms
48,148 KB
testcase_48 AC 939 ms
45,124 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()
ng=len(W)
ok=-1
while ng-ok>1:
    mid=(ok+ng)//2
    if bfs(W[mid])!=-1:
        ok=mid
    else:
        ng=mid
print(W[ok],bfs(W[ok]))
0