結果

問題 No.1473 おでぶなおばけさん
ユーザー hourenhouren
提出日時 2021-12-01 22:43:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 1,099 bytes
コンパイル時間 1,803 ms
コンパイル使用メモリ 179,624 KB
実行使用メモリ 9,656 KB
最終ジャッジ日時 2024-07-05 00:26:38
合計ジャッジ時間 8,544 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 150 ms
9,376 KB
testcase_03 AC 125 ms
8,628 KB
testcase_04 AC 99 ms
6,944 KB
testcase_05 AC 40 ms
6,944 KB
testcase_06 AC 181 ms
8,704 KB
testcase_07 AC 172 ms
9,640 KB
testcase_08 AC 202 ms
9,648 KB
testcase_09 AC 153 ms
9,656 KB
testcase_10 AC 90 ms
6,944 KB
testcase_11 AC 91 ms
6,944 KB
testcase_12 AC 91 ms
6,944 KB
testcase_13 AC 54 ms
6,944 KB
testcase_14 AC 39 ms
6,940 KB
testcase_15 AC 77 ms
6,944 KB
testcase_16 AC 87 ms
6,940 KB
testcase_17 AC 8 ms
6,944 KB
testcase_18 AC 12 ms
6,940 KB
testcase_19 AC 78 ms
6,944 KB
testcase_20 AC 97 ms
7,788 KB
testcase_21 AC 121 ms
6,944 KB
testcase_22 AC 95 ms
8,356 KB
testcase_23 AC 79 ms
7,972 KB
testcase_24 AC 77 ms
7,720 KB
testcase_25 AC 204 ms
8,528 KB
testcase_26 AC 213 ms
8,320 KB
testcase_27 AC 65 ms
6,940 KB
testcase_28 AC 175 ms
9,544 KB
testcase_29 AC 120 ms
7,168 KB
testcase_30 AC 155 ms
7,808 KB
testcase_31 AC 134 ms
9,460 KB
testcase_32 AC 129 ms
8,852 KB
testcase_33 AC 100 ms
7,672 KB
testcase_34 AC 56 ms
6,940 KB
testcase_35 AC 58 ms
6,940 KB
testcase_36 AC 106 ms
6,944 KB
testcase_37 AC 123 ms
7,680 KB
testcase_38 AC 23 ms
6,944 KB
testcase_39 AC 89 ms
6,940 KB
testcase_40 AC 89 ms
6,940 KB
testcase_41 AC 76 ms
6,944 KB
testcase_42 AC 79 ms
6,944 KB
testcase_43 AC 94 ms
7,144 KB
testcase_44 AC 95 ms
7,144 KB
testcase_45 AC 96 ms
7,144 KB
testcase_46 AC 108 ms
7,296 KB
testcase_47 AC 136 ms
8,260 KB
testcase_48 AC 128 ms
7,852 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:43:26: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized]
   43 |     cout << ok << " " << ans << endl;
      |                          ^~~
main.cpp:19:34: note: 'ans' was declared here
   19 |     int ok = 0, ng = 1000000001, ans;
      |                                  ^~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<int,int>;
#define rep(i, n) for(int i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()

int main(){
    int n,m;
    cin >> n >> m;
    vector<vector<P>> to(n);
    rep(i,m){
        int s,t,d;
        cin >> s >> t >> d;
        s--; t--;
        to[s].push_back(make_pair(t,d));
        to[t].push_back(make_pair(s,d));
    }
    int ok = 0, ng = 1000000001, ans;
    while(ng-ok != 1){
        int md = (ng + ok) / 2;
        vector<int> dist(n,-1);
        dist[0] = 0;
        queue<int> que;
        que.push(0);
        while(que.size()){
            int now = que.front();
            que.pop();
            for(auto p:to[now]){
                int x,w;
                tie(x,w) = p;
                if(w < md || dist[x] != -1) continue;
                dist[x] = dist[now] + 1;
                que.push(x);
            }
        }
        if(dist[n-1] != -1){
            ok = md;
            ans = dist[n-1];
        }
        else ng = md;
    }
    cout << ok << " " << ans << endl;
    return 0;
}
0