結果

問題 No.2565 はじめてのおつかい
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-18 03:15:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 2,391 bytes
コンパイル時間 3,405 ms
コンパイル使用メモリ 264,544 KB
実行使用メモリ 25,128 KB
最終ジャッジ日時 2024-09-18 03:15:34
合計ジャッジ時間 10,727 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 193 ms
25,088 KB
testcase_04 AC 120 ms
25,128 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 95 ms
12,816 KB
testcase_07 AC 42 ms
8,320 KB
testcase_08 AC 45 ms
9,140 KB
testcase_09 AC 73 ms
11,756 KB
testcase_10 AC 55 ms
10,044 KB
testcase_11 AC 144 ms
19,804 KB
testcase_12 AC 24 ms
6,940 KB
testcase_13 AC 51 ms
9,616 KB
testcase_14 AC 97 ms
14,756 KB
testcase_15 AC 99 ms
14,348 KB
testcase_16 AC 113 ms
19,784 KB
testcase_17 AC 21 ms
6,940 KB
testcase_18 AC 32 ms
9,280 KB
testcase_19 AC 123 ms
17,884 KB
testcase_20 AC 111 ms
16,544 KB
testcase_21 AC 100 ms
15,872 KB
testcase_22 AC 55 ms
11,672 KB
testcase_23 AC 68 ms
12,004 KB
testcase_24 AC 12 ms
6,940 KB
testcase_25 AC 113 ms
16,708 KB
testcase_26 AC 63 ms
11,552 KB
testcase_27 AC 107 ms
17,456 KB
testcase_28 AC 121 ms
17,628 KB
testcase_29 AC 150 ms
20,948 KB
testcase_30 AC 117 ms
18,736 KB
testcase_31 AC 113 ms
17,280 KB
testcase_32 AC 61 ms
11,448 KB
testcase_33 AC 115 ms
18,132 KB
testcase_34 AC 119 ms
16,024 KB
testcase_35 AC 118 ms
20,328 KB
testcase_36 AC 125 ms
17,892 KB
testcase_37 AC 67 ms
11,640 KB
testcase_38 AC 116 ms
16,332 KB
testcase_39 AC 95 ms
13,712 KB
testcase_40 AC 136 ms
20,768 KB
testcase_41 AC 147 ms
21,856 KB
testcase_42 AC 68 ms
11,216 KB
testcase_43 AC 101 ms
15,100 KB
testcase_44 AC 48 ms
9,224 KB
testcase_45 AC 26 ms
6,944 KB
testcase_46 AC 114 ms
14,992 KB
testcase_47 AC 60 ms
10,544 KB
testcase_48 AC 62 ms
9,712 KB
testcase_49 AC 23 ms
6,940 KB
testcase_50 AC 70 ms
11,684 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 AC 53 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template <class T>
struct Edge {
    Edge() {}
    Edge(int to_, T cost_) : to(to_), cost(cost_) {}
    Edge(int from_, int to_, T cost_) : from(from_), to(to_), cost(cost_) {}
    Edge(int from_, int to_, T cost_, int idx_) : from(from_), to(to_), cost(cost_), idx(idx_) {}
    
    int from, to;
    T cost;
    int idx;
};

template <class T> using Graph = vector<vector<Edge<T>>>;
using graph = Graph<long long>;
using edge = Edge<long long>;

#define add emplace_back

struct Dijkstra {
    private:
    graph g;
    int n, s;
    vector<long long> d;
    vector<edge> prev;
    vector<bool> visit;
    priority_queue<pair<long long, int>, vector<pair<long long, int>>, greater<pair<long long, int>>> pq;
    
    public:
    Dijkstra(graph g_, int s_) : g(g_), n(g.size()), s(s_), d(n, 1000000000000000000), prev(n), visit(n, false) {
        d[s] = 0LL;
        pq.emplace(d[s], s);
        while (!pq.empty()) {
            int v = pq.top().second;
            pq.pop();
            if (visit[v]) {
                continue;
            }
            visit[v] = true;
            for (auto e : g[v]) {
                int nv = e.to;
                long long nc = e.cost;
                if (d[nv] > d[v] + nc) {
                    d[nv] = d[v] + nc;
                    prev[nv] = e;
                    pq.emplace(d[nv], nv);
                }
            }
        }
    }
    
    vector<long long> dists() {
        return d;
    }
    
    long long dist(int t) {
        return d[t];
    }
    
    vector<edge> route(int t) {
        if (s == t || d[t] == 1000000000000000000) {
            return {};
        }
        vector<edge> res;
        int cur = t;
        while (cur != s) {
            res.emplace_back(prev[cur]);
            cur = prev[cur].from;
        }
        reverse(res.begin(), res.end());
        return res;
    }
};

using lint = long long;

int main() {
    int n, m;
    cin >> n >> m;
    graph g(n);
    for (int i = 0; i < m; i++) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        g[u].add(v, 1LL);
    }
    auto a = Dijkstra(g, 0).dists();
    auto b = Dijkstra(g, n - 2).dists();
    auto c = Dijkstra(g, n - 1).dists();
    lint ans = 1e18;
    ans = min({ans, a[n - 2] + b[n - 1] + c[0], a[n - 1] + c[n - 2] + b[0]});
    cout << (ans == 1e18 ? -1 : ans) << endl;
}
0