結果

問題 No.1473 おでぶなおばけさん
ユーザー karinohitokarinohito
提出日時 2024-09-15 18:08:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,057 bytes
コンパイル時間 2,681 ms
コンパイル使用メモリ 219,180 KB
実行使用メモリ 10,684 KB
最終ジャッジ日時 2024-09-15 18:08:20
合計ジャッジ時間 8,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 62 ms
9,984 KB
testcase_03 AC 50 ms
8,704 KB
testcase_04 AC 35 ms
7,168 KB
testcase_05 AC 13 ms
5,376 KB
testcase_06 AC 53 ms
8,576 KB
testcase_07 AC 64 ms
10,496 KB
testcase_08 AC 68 ms
10,684 KB
testcase_09 AC 68 ms
10,624 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 18 ms
5,376 KB
testcase_15 AC 33 ms
5,376 KB
testcase_16 AC 38 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 31 ms
5,376 KB
testcase_20 AC 43 ms
7,936 KB
testcase_21 AC 46 ms
6,144 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 55 ms
8,064 KB
testcase_27 WA -
testcase_28 AC 65 ms
10,496 KB
testcase_29 WA -
testcase_30 AC 49 ms
7,040 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 WA -
testcase_37 AC 47 ms
8,192 KB
testcase_38 WA -
testcase_39 AC 37 ms
5,376 KB
testcase_40 AC 37 ms
5,376 KB
testcase_41 AC 34 ms
5,376 KB
testcase_42 AC 35 ms
5,376 KB
testcase_43 AC 39 ms
7,936 KB
testcase_44 AC 38 ms
7,936 KB
testcase_45 AC 38 ms
7,936 KB
testcase_46 AC 46 ms
7,808 KB
testcase_47 AC 57 ms
8,704 KB
testcase_48 AC 50 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);
    for(int i=0;i<M;i++){
        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)){
            cout<<E[i].first<<" ";
            break;
        }
    }
    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<<D[N-1]<<endl;

}
0