結果

問題 No.2565 はじめてのおつかい
ユーザー shihaka(C_plplplpl)shihaka(C_plplplpl)
提出日時 2023-12-02 16:42:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 1,649 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 212,780 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-09-26 20:37:40
合計ジャッジ時間 6,902 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
9,600 KB
testcase_01 AC 6 ms
9,472 KB
testcase_02 AC 6 ms
9,472 KB
testcase_03 AC 94 ms
14,336 KB
testcase_04 AC 78 ms
14,208 KB
testcase_05 AC 7 ms
9,600 KB
testcase_06 AC 68 ms
13,056 KB
testcase_07 AC 38 ms
11,520 KB
testcase_08 AC 38 ms
11,136 KB
testcase_09 AC 61 ms
12,928 KB
testcase_10 AC 44 ms
11,392 KB
testcase_11 AC 90 ms
13,696 KB
testcase_12 AC 26 ms
11,008 KB
testcase_13 AC 44 ms
11,648 KB
testcase_14 AC 68 ms
12,544 KB
testcase_15 AC 73 ms
12,928 KB
testcase_16 AC 59 ms
12,800 KB
testcase_17 AC 18 ms
10,240 KB
testcase_18 AC 20 ms
10,496 KB
testcase_19 AC 81 ms
13,440 KB
testcase_20 AC 71 ms
13,184 KB
testcase_21 AC 64 ms
12,928 KB
testcase_22 AC 39 ms
11,392 KB
testcase_23 AC 48 ms
11,904 KB
testcase_24 AC 13 ms
9,856 KB
testcase_25 AC 76 ms
12,800 KB
testcase_26 AC 48 ms
11,776 KB
testcase_27 AC 65 ms
13,056 KB
testcase_28 AC 81 ms
13,440 KB
testcase_29 AC 86 ms
13,696 KB
testcase_30 AC 67 ms
13,184 KB
testcase_31 AC 73 ms
13,184 KB
testcase_32 AC 44 ms
11,648 KB
testcase_33 AC 69 ms
12,928 KB
testcase_34 AC 81 ms
13,312 KB
testcase_35 AC 68 ms
13,056 KB
testcase_36 AC 76 ms
13,056 KB
testcase_37 AC 46 ms
11,776 KB
testcase_38 AC 75 ms
13,184 KB
testcase_39 AC 66 ms
12,544 KB
testcase_40 AC 82 ms
13,696 KB
testcase_41 AC 84 ms
13,696 KB
testcase_42 AC 49 ms
11,904 KB
testcase_43 AC 67 ms
12,928 KB
testcase_44 AC 39 ms
11,264 KB
testcase_45 AC 23 ms
10,368 KB
testcase_46 AC 78 ms
13,184 KB
testcase_47 AC 52 ms
12,544 KB
testcase_48 AC 45 ms
11,648 KB
testcase_49 AC 25 ms
11,136 KB
testcase_50 AC 60 ms
13,312 KB
testcase_51 AC 7 ms
9,472 KB
testcase_52 AC 50 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); i++)
template<typename T> inline bool chmax(T &a, T b) {return ((a < b) ? (a = b, true) : (false));}
template<typename T> inline bool chmin(T &a, T b) {return ((a > b) ? (a = b, true) : (false));}
typedef long long ll;
typedef pair<ll,ll> P;

struct edge { 
    ll to, cost; 
    edge(ll to, ll cost): to(to), cost(cost) {}
};
ll MAX_V = 200005, INF = 1001001001001001;
vector<vector<edge>> G(MAX_V);
vector<ll> d(MAX_V,INF);

void dijkstra(int s) {
    priority_queue<P,vector<P>,greater<P>> que;
    d[s] = 0;
    que.emplace(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.emplace(d[e.to], e.to);
            }
        }
    }
}

int main() {
    ll n, m;
    cin >> n >> m;
    vector<ll> u(m), v(m);
    rep(i,m) cin >> u[i] >> v[i];

    rep(i,m) {
        G[u[i]].emplace_back(v[i],1);
    }

    ll sum1 = 0, sum2 = 0;
    dijkstra(1);
    sum1 += d[n-1];
    sum2 += d[n];
    rep(i,MAX_V) {
        d[i] = INF;
    }
    //cout << " " << sum1 << " " << sum2 << endl;
    dijkstra(n-1);
    sum1 += d[n];
    sum2 += d[1];
    rep(i,MAX_V) {
        d[i] = INF;
    }
    //cout << " " << sum1 << " " << sum2 << endl;
    dijkstra(n);
    sum1 += d[1];
    sum2 += d[n-1];

    ll ans = min(sum1, sum2);
    if(ans >= INF)
        ans = -1;
    cout << ans << endl;







    return 0;
}
0