結果

問題 No.1565 Union
ユーザー 👑 CleyLCleyL
提出日時 2022-01-07 09:10:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 1,009 ms
コンパイル使用メモリ 77,624 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-11-08 18:07:28
合計ジャッジ時間 6,613 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 63 ms
5,248 KB
testcase_11 AC 115 ms
11,648 KB
testcase_12 AC 118 ms
7,168 KB
testcase_13 AC 35 ms
5,624 KB
testcase_14 AC 139 ms
10,112 KB
testcase_15 AC 179 ms
14,336 KB
testcase_16 AC 171 ms
14,336 KB
testcase_17 AC 176 ms
14,464 KB
testcase_18 AC 183 ms
14,464 KB
testcase_19 AC 184 ms
14,464 KB
testcase_20 AC 144 ms
14,976 KB
testcase_21 AC 142 ms
14,976 KB
testcase_22 AC 141 ms
14,976 KB
testcase_23 AC 141 ms
15,104 KB
testcase_24 AC 144 ms
14,976 KB
testcase_25 AC 148 ms
15,104 KB
testcase_26 AC 144 ms
14,976 KB
testcase_27 AC 146 ms
14,976 KB
testcase_28 AC 145 ms
15,104 KB
testcase_29 AC 148 ms
15,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
using namespace std;

struct d{
  int p,dist;
};

int main(){
  int n,m;cin>>n>>m;
  vector<int> A[n];
  for(int i = 0; m > i; i++){
    int a,b;cin>>a>>b;
    a--;b--;
    A[a].push_back(b);
    A[b].push_back(a);
  }
  queue<d> B;
  vector<int> lck(n);
  B.push({0,0});
  while(B.size()){
    auto x = B.front();B.pop();
    for(int i = 0; (int)A[x.p].size() > i; i++){
      if(!lck[A[x.p][i]]){
        lck[A[x.p][i]] = 1;
        if(A[x.p][i] == n-1){
          cout << x.dist+1 << endl;
          return 0;
        }
        B.push({A[x.p][i],x.dist+1});
      }
    }
  }
  cout << -1 << endl;
}
0