結果

問題 No.1473 おでぶなおばけさん
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-19 15:19:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 1,003 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 211,976 KB
実行使用メモリ 12,588 KB
最終ジャッジ日時 2024-06-27 03:42:46
合計ジャッジ時間 11,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 173 ms
11,468 KB
testcase_03 AC 137 ms
10,368 KB
testcase_04 AC 110 ms
8,120 KB
testcase_05 AC 44 ms
6,944 KB
testcase_06 AC 194 ms
11,368 KB
testcase_07 AC 179 ms
12,460 KB
testcase_08 AC 238 ms
12,588 KB
testcase_09 AC 169 ms
12,588 KB
testcase_10 AC 96 ms
7,424 KB
testcase_11 AC 97 ms
8,832 KB
testcase_12 AC 95 ms
8,320 KB
testcase_13 AC 57 ms
6,940 KB
testcase_14 AC 42 ms
6,944 KB
testcase_15 AC 82 ms
7,680 KB
testcase_16 AC 92 ms
6,944 KB
testcase_17 AC 8 ms
6,940 KB
testcase_18 AC 13 ms
6,940 KB
testcase_19 AC 84 ms
7,424 KB
testcase_20 AC 106 ms
9,540 KB
testcase_21 AC 132 ms
9,304 KB
testcase_22 AC 103 ms
10,560 KB
testcase_23 AC 83 ms
9,488 KB
testcase_24 AC 84 ms
9,384 KB
testcase_25 AC 245 ms
10,404 KB
testcase_26 AC 241 ms
10,624 KB
testcase_27 AC 70 ms
6,944 KB
testcase_28 AC 196 ms
12,336 KB
testcase_29 AC 140 ms
9,344 KB
testcase_30 AC 180 ms
10,240 KB
testcase_31 AC 155 ms
11,508 KB
testcase_32 AC 150 ms
11,608 KB
testcase_33 AC 113 ms
9,508 KB
testcase_34 AC 62 ms
6,940 KB
testcase_35 AC 65 ms
7,024 KB
testcase_36 AC 115 ms
8,272 KB
testcase_37 AC 147 ms
9,132 KB
testcase_38 AC 26 ms
6,940 KB
testcase_39 AC 92 ms
6,944 KB
testcase_40 AC 93 ms
6,944 KB
testcase_41 AC 83 ms
6,940 KB
testcase_42 AC 83 ms
6,944 KB
testcase_43 AC 101 ms
9,192 KB
testcase_44 AC 99 ms
9,064 KB
testcase_45 AC 99 ms
9,064 KB
testcase_46 AC 123 ms
9,536 KB
testcase_47 AC 154 ms
10,744 KB
testcase_48 AC 144 ms
10,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

ll bfs(vector<vector<pair<ll, ll>>> &E, ll X){
 
    ll N = E.size();
    ll from, start=0;

    queue<ll> que;
    vector<ll> dist(N, 1e18);
 
    dist[start] = 0;
    que.push(start);
 
    while(!que.empty()){
        from = que.front();
        que.pop();
        for (auto [to, C] : E[from]){
            if (X > C) continue;
            if (dist[to] == 1e18){
                dist[to] = dist[from]+1;
                que.push(to);
            }
        }
    }

    return dist[N-1];
}

int main(){

    ll N, M, A, B, C, D;
    cin >> N >> M;
    vector<vector<pair<ll, ll>>> E(N);
    for (int i=0; i<M; i++){
        cin >> A >> B >> C;
        A--; B--;
        E[A].push_back({B, C});
        E[B].push_back({A, C});
    }

    ll l=0, r=1e9+1, c;

    while(r-l>1){
        c=(l+r)/2;
        D = bfs(E, c);
        if (D != 1e18) l=c;
        else r=c;
    }

    cout << l << " " << bfs(E, l) << endl;

    return 0;
}
0