結果

問題 No.1473 おでぶなおばけさん
ユーザー karinohitokarinohito
提出日時 2024-09-15 18:10:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 1,082 bytes
コンパイル時間 2,685 ms
コンパイル使用メモリ 219,152 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-15 18:10:32
合計ジャッジ時間 7,134 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 61 ms
10,112 KB
testcase_03 AC 50 ms
8,704 KB
testcase_04 AC 36 ms
7,168 KB
testcase_05 AC 14 ms
5,376 KB
testcase_06 AC 52 ms
8,448 KB
testcase_07 AC 64 ms
10,624 KB
testcase_08 AC 65 ms
10,752 KB
testcase_09 AC 62 ms
10,496 KB
testcase_10 AC 38 ms
5,376 KB
testcase_11 AC 38 ms
5,376 KB
testcase_12 AC 38 ms
5,376 KB
testcase_13 AC 25 ms
5,376 KB
testcase_14 AC 19 ms
5,376 KB
testcase_15 AC 34 ms
5,376 KB
testcase_16 AC 38 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 32 ms
5,376 KB
testcase_20 AC 41 ms
8,064 KB
testcase_21 AC 46 ms
6,016 KB
testcase_22 AC 54 ms
8,960 KB
testcase_23 AC 44 ms
8,704 KB
testcase_24 AC 44 ms
8,064 KB
testcase_25 AC 60 ms
8,704 KB
testcase_26 AC 62 ms
8,576 KB
testcase_27 AC 25 ms
5,376 KB
testcase_28 AC 64 ms
10,496 KB
testcase_29 AC 44 ms
6,528 KB
testcase_30 AC 51 ms
6,912 KB
testcase_31 AC 54 ms
10,240 KB
testcase_32 AC 43 ms
8,576 KB
testcase_33 AC 37 ms
7,808 KB
testcase_34 AC 22 ms
5,760 KB
testcase_35 AC 21 ms
5,376 KB
testcase_36 AC 46 ms
6,528 KB
testcase_37 AC 46 ms
8,192 KB
testcase_38 AC 11 ms
5,376 KB
testcase_39 AC 38 ms
5,376 KB
testcase_40 AC 38 ms
5,376 KB
testcase_41 AC 35 ms
5,376 KB
testcase_42 AC 35 ms
5,376 KB
testcase_43 AC 39 ms
7,936 KB
testcase_44 AC 40 ms
7,936 KB
testcase_45 AC 39 ms
7,936 KB
testcase_46 AC 47 ms
7,680 KB
testcase_47 AC 83 ms
8,576 KB
testcase_48 AC 51 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/dsu>
using namespace atcoder;

int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int N,M;
    cin>>N>>M;
    dsu d(N);
    vector<pair<int,pair<int,int>>> E(M);
    for(int i=0;i<M;i++){
        cin>>E[i].second.first>>E[i].second.second>>E[i].first;
        E[i].second={E[i].second.first-1,E[i].second.second-1};
    }
    sort(E.begin(),E.end());
    reverse(E.begin(),E.end());
    vector<vector<int>> G(N);
    int W=-1;
    for(int i=0;i<M;i++){
        if(E[i].first<W)break;
        auto [u,v]=E[i].second;
        G[u].push_back(v);
        G[v].push_back(u);
        d.merge(u,v);
        if(d.same(0,N-1)){
            W=E[i].first;
        }
    }
    vector<int> D(N,1e8);
    queue<int> Q;
    Q.push(0);
    D[0]=0;
    while(!Q.empty()){
        int p=Q.front();
        Q.pop();
        for(auto v:G[p]){
            if(D[v]>D[p]+1){
                D[v]=D[p]+1;
                Q.push(v);
            }
        }
    }
    cout<<W<<" "<<D[N-1]<<endl;

}
0