結果

問題 No.1565 Union
ユーザー take000take000
提出日時 2021-07-02 23:13:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 1,066 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 212,480 KB
実行使用メモリ 16,076 KB
最終ジャッジ日時 2024-06-29 13:01:24
合計ジャッジ時間 6,953 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 71 ms
6,944 KB
testcase_11 AC 128 ms
12,288 KB
testcase_12 AC 141 ms
9,216 KB
testcase_13 AC 42 ms
6,940 KB
testcase_14 AC 175 ms
12,032 KB
testcase_15 AC 252 ms
16,036 KB
testcase_16 AC 194 ms
15,716 KB
testcase_17 AC 257 ms
16,076 KB
testcase_18 AC 250 ms
16,052 KB
testcase_19 AC 252 ms
16,024 KB
testcase_20 AC 146 ms
14,940 KB
testcase_21 AC 149 ms
14,948 KB
testcase_22 AC 146 ms
15,064 KB
testcase_23 AC 147 ms
14,916 KB
testcase_24 AC 146 ms
14,880 KB
testcase_25 AC 152 ms
15,020 KB
testcase_26 AC 146 ms
14,920 KB
testcase_27 AC 150 ms
14,968 KB
testcase_28 AC 151 ms
14,972 KB
testcase_29 AC 149 ms
15,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < n; ++i)
typedef long long ll;
using namespace std;

struct edge {
    int to;
    int cost;
};
using P = pair<int, int>;
vector<vector<edge>> G;
vector<int> d;
void dijkstra(int s) {
    priority_queue<P, vector<P>, greater<P>> que;
    fill(d.begin(), d.end(), 1e9);
    d[s] = 0;
    que.push(P(0, s));
    while (!que.empty()) {
        P p = que.top();
        que.pop();
        int v = p.second;
        if (d[v] < p.first)
            continue;
        rep(i, G[v].size()) {
            edge e = G[v][i];
            if (d[e.to] > d[v] + e.cost) {
                d[e.to] = d[v] + e.cost;
                que.push(P(d[e.to], e.to));
            }
        }
    }
}

int main() {
    int N, M;
    cin >> N >> M;
    G.resize(N);
    d.resize(N);
    rep(i, M) {
        int a, b;
        cin >> a >> b;
        a--, b--;
        G[a].push_back({b, 1});
        G[b].push_back({a, 1});
    }

    dijkstra(0);

    if (d[N - 1] == 1e9) d[N - 1] = -1;
    cout << d[N - 1] << endl;

    return 0;
}
0