結果

問題 No.1473 おでぶなおばけさん
ユーザー iomiriomir
提出日時 2023-03-26 10:43:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 1,637 bytes
コンパイル時間 1,523 ms
コンパイル使用メモリ 177,648 KB
実行使用メモリ 11,696 KB
最終ジャッジ日時 2024-09-19 09:35:50
合計ジャッジ時間 10,707 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 328 ms
11,604 KB
testcase_03 AC 168 ms
10,424 KB
testcase_04 AC 222 ms
7,724 KB
testcase_05 AC 85 ms
6,940 KB
testcase_06 AC 303 ms
10,928 KB
testcase_07 AC 262 ms
11,692 KB
testcase_08 AC 439 ms
11,688 KB
testcase_09 AC 257 ms
11,696 KB
testcase_10 AC 92 ms
7,424 KB
testcase_11 AC 92 ms
8,960 KB
testcase_12 AC 84 ms
8,320 KB
testcase_13 AC 51 ms
6,940 KB
testcase_14 AC 38 ms
6,940 KB
testcase_15 AC 74 ms
7,680 KB
testcase_16 AC 85 ms
6,944 KB
testcase_17 AC 8 ms
6,940 KB
testcase_18 AC 12 ms
6,940 KB
testcase_19 AC 101 ms
7,808 KB
testcase_20 AC 127 ms
9,668 KB
testcase_21 AC 172 ms
9,676 KB
testcase_22 AC 118 ms
10,944 KB
testcase_23 AC 97 ms
9,616 KB
testcase_24 AC 101 ms
9,900 KB
testcase_25 AC 364 ms
10,780 KB
testcase_26 AC 384 ms
11,256 KB
testcase_27 AC 85 ms
6,940 KB
testcase_28 AC 323 ms
11,564 KB
testcase_29 AC 194 ms
9,968 KB
testcase_30 AC 235 ms
10,884 KB
testcase_31 AC 221 ms
11,636 KB
testcase_32 AC 196 ms
11,220 KB
testcase_33 AC 195 ms
9,632 KB
testcase_34 AC 78 ms
6,940 KB
testcase_35 AC 82 ms
7,028 KB
testcase_36 AC 158 ms
8,660 KB
testcase_37 AC 294 ms
9,256 KB
testcase_38 AC 34 ms
6,940 KB
testcase_39 AC 86 ms
6,940 KB
testcase_40 AC 83 ms
6,944 KB
testcase_41 AC 76 ms
6,940 KB
testcase_42 AC 77 ms
6,940 KB
testcase_43 AC 173 ms
10,548 KB
testcase_44 AC 170 ms
10,544 KB
testcase_45 AC 176 ms
10,544 KB
testcase_46 AC 105 ms
9,088 KB
testcase_47 AC 152 ms
10,240 KB
testcase_48 AC 136 ms
9,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define all(v) v.begin(),v.end()
using ll = long long;
using ull = unsigned long long;
using vll=vector<ll>;
using vvll = vector<vector<ll>>;
const ll INF=1ll<<60;
using P = pair<ll,ll>;

int main(){
    ll N,M;
    cin>>N>>M;
    vector<vector<P>> ab(N);
    for(int i=0;i<M;i++){
        ll a,b,c;
        cin>>a>>b>>c;
        a--;b--;
        ab[a].push_back({c,b});
        ab[b].push_back({c,a});
    }
    ll l=0,r=1e16;
    while(r-l>1){
        ll m=(r+l)/2;
        vector<ll> dist(N,INF);
        priority_queue<P,vector<P>,greater<P>> q;
        q.push({0,0});
        dist[0]=0;
        while(!q.empty()){
            auto x=q.top();q.pop();
            ll cost=x.first,now=x.second;
            if(dist[now]<cost)continue;
            for(auto x2:ab[now]){
                ll tcost=x2.first,to=x2.second;
                if(tcost<m)continue;
                if(dist[to]<=dist[now]+1)continue;
                dist[to]=dist[now]+1;
                q.push({dist[to],to});
            }
        }
        if(dist[N-1]!=INF) l=m;
        else r=m;
    }
    ll m=l;
    vector<ll> dist(N,INF);
    priority_queue<P,vector<P>,greater<P>> q;
    q.push({0,0});
    dist[0]=0;
    while(!q.empty()){
        auto x=q.top();q.pop();
        ll cost=x.first,now=x.second;
        if(dist[now]<cost)continue;
        for(auto x2:ab[now]){
            ll tcost=x2.first,to=x2.second;
            if(tcost<m)continue;
            if(dist[to]<=dist[now]+1)continue;
            dist[to]=dist[now]+1;
            q.push({dist[to],to});
        }
    }
    cout << l<<" "<<dist[N-1]<< endl;
}
0