結果

問題 No.1473 おでぶなおばけさん
ユーザー Manuel1024Manuel1024
提出日時 2021-04-27 22:44:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 1,172 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 80,476 KB
実行使用メモリ 10,036 KB
最終ジャッジ日時 2024-07-06 17:43:14
合計ジャッジ時間 8,947 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 166 ms
9,416 KB
testcase_03 AC 125 ms
8,760 KB
testcase_04 AC 100 ms
6,940 KB
testcase_05 AC 42 ms
6,940 KB
testcase_06 AC 173 ms
8,928 KB
testcase_07 AC 160 ms
10,028 KB
testcase_08 AC 208 ms
10,032 KB
testcase_09 AC 154 ms
10,036 KB
testcase_10 AC 90 ms
6,944 KB
testcase_11 AC 93 ms
6,940 KB
testcase_12 AC 91 ms
6,944 KB
testcase_13 AC 56 ms
6,940 KB
testcase_14 AC 40 ms
6,944 KB
testcase_15 AC 75 ms
6,940 KB
testcase_16 AC 85 ms
6,940 KB
testcase_17 AC 8 ms
6,940 KB
testcase_18 AC 12 ms
6,944 KB
testcase_19 AC 75 ms
6,940 KB
testcase_20 AC 96 ms
8,044 KB
testcase_21 AC 124 ms
7,040 KB
testcase_22 AC 91 ms
8,616 KB
testcase_23 AC 76 ms
8,360 KB
testcase_24 AC 76 ms
7,716 KB
testcase_25 AC 183 ms
8,524 KB
testcase_26 AC 199 ms
8,564 KB
testcase_27 AC 62 ms
6,940 KB
testcase_28 AC 180 ms
9,932 KB
testcase_29 AC 130 ms
7,168 KB
testcase_30 AC 159 ms
7,808 KB
testcase_31 AC 125 ms
9,464 KB
testcase_32 AC 127 ms
9,108 KB
testcase_33 AC 105 ms
7,800 KB
testcase_34 AC 56 ms
6,940 KB
testcase_35 AC 60 ms
6,940 KB
testcase_36 AC 104 ms
6,944 KB
testcase_37 AC 113 ms
7,680 KB
testcase_38 AC 24 ms
6,944 KB
testcase_39 AC 87 ms
6,940 KB
testcase_40 AC 87 ms
6,944 KB
testcase_41 AC 79 ms
6,944 KB
testcase_42 AC 81 ms
6,944 KB
testcase_43 AC 96 ms
7,144 KB
testcase_44 AC 95 ms
7,140 KB
testcase_45 AC 92 ms
7,144 KB
testcase_46 AC 108 ms
7,552 KB
testcase_47 AC 139 ms
8,508 KB
testcase_48 AC 129 ms
8,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
using namespace std;
using P = pair<int, int>;
constexpr int INF = 1001001001;

int isReachable(const vector<vector<P>> &G, int obakeW){
    vector<int> dist(G.size(), INF);
    queue<int> Q;
    Q.push(0);
    dist[0] = 0;
    while(Q.size()){
        int cur = Q.front(); Q.pop();
        for(auto &p: G[cur]){
            if(p.second >= obakeW && dist[p.first] == INF){
                dist[p.first] = dist[cur]+1;
                Q.push(p.first);
            }
        }
    }
    //cerr << limWeight << " " << dist[0] << " " << dist[1] << " " << dist[2] << endl;
    return dist[G.size()-1];
}

int main(){
    int n, m;
    cin >> n >> m;

    vector<vector<P>> G(n);
    for(int i = 0; i < m; i++){
        int s, t, d;
        cin >> s >> t >> d;
        s--; t--;
        G[s].push_back(make_pair(t, d));
        G[t].push_back(make_pair(s, d));
    }

    int ac = 0;
    int wa = INF;
    while(wa-ac > 1){
        int mid = (wa+ac)/2;
        int res = isReachable(G, mid);
        if(res == INF) wa = mid;
        else ac = mid;
    }

    cout << ac << " " << isReachable(G, ac) << endl;
    return 0;
}
0