結果

問題 No.1565 Union
ユーザー aaaaaaaa
提出日時 2022-10-27 17:20:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 176,392 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-11-23 17:23:46
合計ジャッジ時間 8,047 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 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 2 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 70 ms
6,016 KB
testcase_11 AC 122 ms
12,596 KB
testcase_12 AC 139 ms
8,320 KB
testcase_13 AC 40 ms
5,632 KB
testcase_14 AC 164 ms
11,392 KB
testcase_15 AC 221 ms
15,928 KB
testcase_16 AC 253 ms
15,872 KB
testcase_17 AC 277 ms
16,020 KB
testcase_18 AC 276 ms
16,000 KB
testcase_19 AC 262 ms
16,000 KB
testcase_20 AC 152 ms
16,512 KB
testcase_21 AC 152 ms
16,512 KB
testcase_22 AC 153 ms
16,512 KB
testcase_23 AC 151 ms
16,512 KB
testcase_24 AC 154 ms
16,488 KB
testcase_25 AC 154 ms
16,444 KB
testcase_26 AC 147 ms
16,512 KB
testcase_27 AC 148 ms
16,512 KB
testcase_28 AC 148 ms
16,384 KB
testcase_29 AC 147 ms
16,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
  int n,m;
  cin>>n>>m;
  int a[m],b[m];
  vector<vector<int>> g(n);
  for(int i = 0;i < m;i++){
    cin>>a[i]>>b[i];
    a[i]--;
    b[i]--;
    g[a[i]].push_back(b[i]);
    g[b[i]].push_back(a[i]);
  }
  queue<int> q;
  q.push(0);
  vector<int> cost(n,1000000);
  cost[0] = 0;
  while(!q.empty()){
    int nn = q.front();
    q.pop();
    for(int x:g[nn]){
      if(cost[x] == 1000000){
        q.push(x);
        cost[x] = cost[nn]+1;
      }
    }
  }
  if(cost[n-1] == 1000000){
    cout<<-1<<endl;
  }
  else{
  cout<<cost[n-1]<<endl;
  }
}
0