結果

問題 No.1473 おでぶなおばけさん
ユーザー MZKiMZKi
提出日時 2021-04-09 22:08:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 1,389 bytes
コンパイル時間 1,506 ms
コンパイル使用メモリ 168,608 KB
実行使用メモリ 10,800 KB
最終ジャッジ日時 2024-06-25 05:41:04
合計ジャッジ時間 8,457 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 162 ms
9,832 KB
testcase_03 AC 129 ms
9,344 KB
testcase_04 AC 111 ms
8,332 KB
testcase_05 AC 43 ms
6,944 KB
testcase_06 AC 181 ms
9,544 KB
testcase_07 AC 166 ms
10,792 KB
testcase_08 AC 212 ms
10,800 KB
testcase_09 AC 154 ms
10,680 KB
testcase_10 AC 94 ms
7,768 KB
testcase_11 AC 95 ms
8,448 KB
testcase_12 AC 96 ms
7,936 KB
testcase_13 AC 57 ms
7,040 KB
testcase_14 AC 43 ms
6,944 KB
testcase_15 AC 81 ms
7,936 KB
testcase_16 AC 91 ms
7,228 KB
testcase_17 AC 9 ms
6,940 KB
testcase_18 AC 14 ms
6,940 KB
testcase_19 AC 82 ms
7,680 KB
testcase_20 AC 98 ms
8,936 KB
testcase_21 AC 125 ms
8,572 KB
testcase_22 AC 93 ms
9,520 KB
testcase_23 AC 77 ms
8,860 KB
testcase_24 AC 79 ms
8,760 KB
testcase_25 AC 209 ms
9,472 KB
testcase_26 AC 214 ms
9,488 KB
testcase_27 AC 67 ms
7,040 KB
testcase_28 AC 186 ms
10,740 KB
testcase_29 AC 126 ms
8,704 KB
testcase_30 AC 163 ms
9,296 KB
testcase_31 AC 136 ms
9,840 KB
testcase_32 AC 136 ms
10,172 KB
testcase_33 AC 105 ms
8,960 KB
testcase_34 AC 58 ms
7,240 KB
testcase_35 AC 63 ms
7,396 KB
testcase_36 AC 110 ms
8,064 KB
testcase_37 AC 132 ms
8,568 KB
testcase_38 AC 25 ms
6,944 KB
testcase_39 AC 91 ms
7,424 KB
testcase_40 AC 90 ms
7,424 KB
testcase_41 AC 85 ms
7,164 KB
testcase_42 AC 82 ms
7,288 KB
testcase_43 AC 99 ms
8,608 KB
testcase_44 AC 97 ms
8,740 KB
testcase_45 AC 99 ms
8,608 KB
testcase_46 AC 111 ms
9,076 KB
testcase_47 AC 136 ms
9,736 KB
testcase_48 AC 129 ms
9,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
template<class T> inline bool chmin(T&a, T b){if(a > b){a = b; return true;}else{return false;}}
template<class T> inline bool chmax(T&a, T b){if(a < b){a = b; return true;}else{return false;}}
#define ll long long
#define double long double
#define rep(i,n) for(int i=0;i<(n);i++)
#define REP(i,n) for(int i=1;i<=(n);i++)
#define mod (ll)(1e9+7)
#define inf (ll)(3e18+7)
#define eps (double)(1e-9)
#define pi (double) acos(-1)
#define P pair<int,int>
#define PiP pair<int,pair<int,int>>
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
using namespace std;

struct edge{
    int to, li;
};

vector<vector<edge>> G(100010);

ll BFS(ll w, int n){
    vector<ll> d(n, inf);
    d[0] = 0;
    queue<ll> que;
    que.push(0);
    while(!que.empty()){
        ll v = que.front();
        que.pop();
        for(auto nv : G[v]){
            if(nv.li < w)continue;
            if(chmin(d[nv.to], d[v]+1))que.push(nv.to);
        }
    }
    return d[n-1];
}
int main() {
    int n, m;
    cin >> n >> m;
    rep(i, m){
        int s, t, d;
        cin >> s >> t >> d;
        s--; t--;
        G[s].push_back({t, d});
        G[t].push_back({s, d});
    }
    ll ok = 0, ng = mod;
    while(ng - ok > 1){
        ll mid = (ng + ok) / 2;
        if(BFS(mid, n) != inf)ok = mid;
        else ng = mid;
    }
    cout << ok << " "<< BFS(ok, n) << endl;
}
0