結果

問題 No.1565 Union
ユーザー simansiman
提出日時 2021-07-08 16:00:57
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 1,103 bytes
コンパイル時間 1,373 ms
コンパイル使用メモリ 142,428 KB
実行使用メモリ 14,712 KB
最終ジャッジ日時 2024-05-16 07:29:11
合計ジャッジ時間 6,033 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,076 KB
testcase_01 AC 5 ms
8,020 KB
testcase_02 AC 5 ms
8,220 KB
testcase_03 AC 4 ms
8,032 KB
testcase_04 AC 4 ms
8,016 KB
testcase_05 AC 4 ms
8,064 KB
testcase_06 AC 3 ms
8,120 KB
testcase_07 AC 3 ms
8,112 KB
testcase_08 AC 5 ms
8,144 KB
testcase_09 AC 4 ms
8,160 KB
testcase_10 AC 73 ms
10,640 KB
testcase_11 AC 120 ms
12,372 KB
testcase_12 AC 136 ms
12,848 KB
testcase_13 AC 42 ms
9,608 KB
testcase_14 AC 161 ms
13,000 KB
testcase_15 AC 203 ms
13,808 KB
testcase_16 AC 198 ms
13,604 KB
testcase_17 AC 206 ms
14,708 KB
testcase_18 AC 223 ms
14,712 KB
testcase_19 AC 225 ms
14,612 KB
testcase_20 AC 142 ms
14,292 KB
testcase_21 AC 143 ms
14,412 KB
testcase_22 AC 142 ms
14,484 KB
testcase_23 AC 143 ms
14,472 KB
testcase_24 AC 143 ms
14,408 KB
testcase_25 AC 147 ms
14,360 KB
testcase_26 AC 140 ms
14,244 KB
testcase_27 AC 143 ms
14,284 KB
testcase_28 AC 149 ms
14,360 KB
testcase_29 AC 146 ms
14,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <limits.h>
#include <map>
#include <queue>
#include <set>
#include <string.h>
#include <vector>

using namespace std;
typedef long long ll;

const int MAX_N = 200101;

struct Node {
  int v;
  int dist;

  Node(int v = -1, int dist = -1) {
    this->v = v;
    this->dist = dist;
  }

  bool operator>(const Node &n) const {
    return dist > n.dist;
  }
};

vector<int> E[MAX_N];

int main() {
  int N, M;
  cin >> N >> M;
  priority_queue <Node, vector<Node>, greater<Node>> pque;

  int a, b;
  for (int i = 0; i < M; ++i) {
    cin >> a >> b;
    E[a].push_back(b);
    E[b].push_back(a);
  }

  pque.push(Node(1, 0));
  vector<bool> visited(MAX_N, false);

  while (not pque.empty()) {
    Node node = pque.top();
    pque.pop();

    if (visited[node.v]) continue;
    visited[node.v] = true;

    if (node.v == N) {
      cout << node.dist << endl;
      return 0;
    }

    for (int u : E[node.v]) {
      pque.push(Node(u, node.dist + 1));
    }
  }

  cout << -1 << endl;

  return 0;
}
0