結果

問題 No.1565 Union
ユーザー shiomusubi496shiomusubi496
提出日時 2021-06-26 13:36:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 210,756 KB
実行使用メモリ 16,812 KB
最終ジャッジ日時 2024-06-25 10:25:24
合計ジャッジ時間 6,628 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 65 ms
6,940 KB
testcase_11 AC 105 ms
12,924 KB
testcase_12 AC 127 ms
9,216 KB
testcase_13 AC 37 ms
6,944 KB
testcase_14 AC 151 ms
12,160 KB
testcase_15 AC 201 ms
16,812 KB
testcase_16 AC 180 ms
16,440 KB
testcase_17 AC 196 ms
16,676 KB
testcase_18 AC 198 ms
16,700 KB
testcase_19 AC 202 ms
16,776 KB
testcase_20 AC 143 ms
15,740 KB
testcase_21 AC 141 ms
15,676 KB
testcase_22 AC 142 ms
15,716 KB
testcase_23 AC 141 ms
15,740 KB
testcase_24 AC 143 ms
15,664 KB
testcase_25 AC 144 ms
15,664 KB
testcase_26 AC 142 ms
15,688 KB
testcase_27 AC 143 ms
15,720 KB
testcase_28 AC 145 ms
15,708 KB
testcase_29 AC 143 ms
15,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
signed main(){
    int N,M; cin>>N>>M;
    vector<vector<int>> G(N);
    for(int i=0;i<M;i++){
        int a,b; cin>>a>>b;
        G[--a].push_back(--b);
        G[b].push_back(a);
    }
    vector<int> dist(N,-1); dist[0]=0;
    queue<int> Q; Q.push(0);
    while(!Q.empty()){
        int v=Q.front(); Q.pop();
        for(int t:G[v]){
            if(dist[t]==-1){
                dist[t]=dist[v]+1;
                Q.push(t);
            }
        }
    }
    cout<<dist[N-1]<<endl;
}
0