結果

問題 No.2565 はじめてのおつかい
ユーザー int_sanint_san
提出日時 2023-12-02 15:49:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 1,471 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 175,772 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-09-26 19:22:15
合計ジャッジ時間 6,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 88 ms
9,984 KB
testcase_04 AC 70 ms
9,856 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 26 ms
5,376 KB
testcase_09 AC 48 ms
5,376 KB
testcase_10 AC 33 ms
5,376 KB
testcase_11 AC 74 ms
6,912 KB
testcase_12 AC 19 ms
5,376 KB
testcase_13 AC 32 ms
5,376 KB
testcase_14 AC 53 ms
5,760 KB
testcase_15 AC 55 ms
5,376 KB
testcase_16 AC 63 ms
8,064 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 17 ms
5,376 KB
testcase_19 AC 68 ms
6,528 KB
testcase_20 AC 59 ms
6,144 KB
testcase_21 AC 58 ms
6,144 KB
testcase_22 AC 34 ms
5,376 KB
testcase_23 AC 38 ms
5,376 KB
testcase_24 AC 8 ms
5,376 KB
testcase_25 AC 59 ms
6,400 KB
testcase_26 AC 36 ms
5,376 KB
testcase_27 AC 59 ms
6,528 KB
testcase_28 AC 67 ms
6,400 KB
testcase_29 AC 76 ms
7,296 KB
testcase_30 AC 64 ms
6,912 KB
testcase_31 AC 63 ms
6,272 KB
testcase_32 AC 35 ms
5,376 KB
testcase_33 AC 64 ms
6,656 KB
testcase_34 AC 61 ms
6,016 KB
testcase_35 AC 64 ms
7,424 KB
testcase_36 AC 66 ms
6,656 KB
testcase_37 AC 36 ms
5,376 KB
testcase_38 AC 62 ms
6,016 KB
testcase_39 AC 50 ms
5,504 KB
testcase_40 AC 75 ms
7,296 KB
testcase_41 AC 77 ms
7,552 KB
testcase_42 AC 38 ms
5,376 KB
testcase_43 AC 56 ms
5,760 KB
testcase_44 AC 28 ms
5,376 KB
testcase_45 AC 16 ms
5,376 KB
testcase_46 AC 60 ms
5,376 KB
testcase_47 AC 42 ms
5,376 KB
testcase_48 AC 32 ms
5,376 KB
testcase_49 AC 20 ms
5,376 KB
testcase_50 AC 52 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 44 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int INF = 100000000;
int main() {
    int N, M;
    cin >> N >> M;
    vector<vector<int>> G(N);
    for (int i = 0; i < M; i++) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        G[u].push_back(v);
    }
    queue<int> q;
    q.push(0);
    vector<int> dist1(N, INF);
    dist1[0] = 0;
    while (!q.empty()) {
        int now = q.front();
        q.pop();
        for (auto next : G[now]) {
            if (dist1[next] == INF) {
                q.push(next);
                dist1[next] = dist1[now] + 1;
            }
        }
    }
    q.push(N - 2);
    vector<int> dist2(N, INF);
    dist2[N - 2] = 0;
    while (!q.empty()) {
        int now = q.front();
        q.pop();
        for (auto next : G[now]) {
            if (dist2[next] == INF) {
                q.push(next);
                dist2[next] = dist2[now] + 1;
            }
        }
    }
    q.push(N - 1);
    vector<int> dist3(N, INF);
    dist3[N - 1] = 0;
    while (!q.empty()) {
        int now = q.front();
        q.pop();
        for (auto next : G[now]) {
            if (dist3[next] == INF) {
                q.push(next);
                dist3[next] = dist3[now] + 1;
            }
        }
    }
    int ans = dist1[N - 2] + dist2[N - 1] + dist3[0];
    ans = min(ans, dist1[N - 1] + dist3[N - 2] + dist2[0]);
    if (ans < INF) {
        cout << ans << endl;
    } else {
        cout << -1 << endl;
    }
}
0