結果

問題 No.2565 はじめてのおつかい
ユーザー loop0919loop0919
提出日時 2023-10-31 14:41:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 1,177 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 212,188 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-25 17:39:41
合計ジャッジ時間 6,440 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,376 KB
testcase_03 AC 96 ms
11,008 KB
testcase_04 AC 72 ms
11,008 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 53 ms
5,376 KB
testcase_07 AC 28 ms
5,376 KB
testcase_08 AC 27 ms
5,376 KB
testcase_09 AC 47 ms
5,376 KB
testcase_10 AC 32 ms
5,376 KB
testcase_11 AC 72 ms
7,680 KB
testcase_12 AC 19 ms
5,376 KB
testcase_13 AC 31 ms
5,376 KB
testcase_14 AC 51 ms
6,272 KB
testcase_15 AC 55 ms
5,760 KB
testcase_16 AC 59 ms
9,344 KB
testcase_17 AC 13 ms
5,376 KB
testcase_18 AC 17 ms
5,760 KB
testcase_19 AC 65 ms
7,040 KB
testcase_20 AC 58 ms
6,784 KB
testcase_21 AC 55 ms
6,912 KB
testcase_22 AC 32 ms
5,760 KB
testcase_23 AC 37 ms
5,632 KB
testcase_24 AC 8 ms
5,376 KB
testcase_25 AC 59 ms
6,912 KB
testcase_26 AC 36 ms
5,504 KB
testcase_27 AC 58 ms
7,168 KB
testcase_28 AC 67 ms
6,940 KB
testcase_29 AC 75 ms
8,192 KB
testcase_30 AC 62 ms
7,680 KB
testcase_31 AC 60 ms
6,912 KB
testcase_32 AC 36 ms
5,376 KB
testcase_33 AC 61 ms
7,296 KB
testcase_34 AC 61 ms
6,528 KB
testcase_35 AC 66 ms
8,320 KB
testcase_36 AC 60 ms
7,296 KB
testcase_37 AC 35 ms
5,504 KB
testcase_38 AC 60 ms
6,528 KB
testcase_39 AC 48 ms
5,760 KB
testcase_40 AC 71 ms
8,064 KB
testcase_41 AC 74 ms
8,576 KB
testcase_42 AC 38 ms
5,376 KB
testcase_43 AC 55 ms
6,144 KB
testcase_44 AC 27 ms
5,376 KB
testcase_45 AC 15 ms
5,376 KB
testcase_46 AC 60 ms
6,016 KB
testcase_47 AC 41 ms
5,376 KB
testcase_48 AC 32 ms
5,376 KB
testcase_49 AC 19 ms
5,376 KB
testcase_50 AC 51 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 43 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define ll long long

const ll INF = 1ll << 60;

void bfs(int start, vector<vector<int>> &graph, vector<ll> &dists) {
    dists[start] = 0;
    queue<pair<int, ll>> q;
    q.push(pair<int, ll>(start, 0));

    while (!q.empty()) {
        int now_v = q.front().first;
        ll d = q.front().second;
        q.pop();

        for (int next_v : graph[now_v]) {
            if (dists[next_v] < INF) continue;
            dists[next_v] = d + 1;
            q.push(pair<int, ll>(next_v, d + 1));
        }
    }
}

int main() {
    int N, M;
    cin >> N >> M;

    vector<vector<int>> graph(N, vector<int>());
    for (int i = 0; i < M; i++) {
        int u, v;
        cin >> u >> v;
        u -= 1, v -= 1;
        graph[u].push_back(v);
    }

    vector<ll> dist_0(N, INF);
    bfs(0, graph, dist_0);

    vector<ll> dist_N_2(N, INF);
    bfs(N-2, graph, dist_N_2);

    vector<ll> dist_N_1(N, INF);
    bfs(N-1, graph, dist_N_1);

    ll ans = min(
        dist_0[N-2] + dist_N_2[N-1] + dist_N_1[0],
        dist_0[N-1] + dist_N_1[N-2] + dist_N_2[0]
    );

    if (ans < INF) cout << ans << endl;
    else cout << -1 << endl;
}
0