結果

問題 No.2565 はじめてのおつかい
ユーザー GOTKAKOGOTKAKO
提出日時 2023-12-02 15:18:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,197 bytes
コンパイル時間 2,911 ms
コンパイル使用メモリ 215,228 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-09-26 18:26:40
合計ジャッジ時間 7,141 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 183 ms
28,288 KB
testcase_04 AC 70 ms
28,160 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 67 ms
10,752 KB
testcase_07 AC 30 ms
7,296 KB
testcase_08 AC 36 ms
8,320 KB
testcase_09 AC 50 ms
9,856 KB
testcase_10 AC 44 ms
8,832 KB
testcase_11 AC 143 ms
18,176 KB
testcase_12 AC 15 ms
5,572 KB
testcase_13 AC 41 ms
8,576 KB
testcase_14 AC 88 ms
13,568 KB
testcase_15 AC 76 ms
12,544 KB
testcase_16 AC 78 ms
21,632 KB
testcase_17 AC 13 ms
6,144 KB
testcase_18 AC 22 ms
10,240 KB
testcase_19 AC 101 ms
16,128 KB
testcase_20 AC 83 ms
15,232 KB
testcase_21 AC 76 ms
15,232 KB
testcase_22 AC 34 ms
11,008 KB
testcase_23 AC 50 ms
11,136 KB
testcase_24 AC 7 ms
5,376 KB
testcase_25 AC 87 ms
15,488 KB
testcase_26 AC 49 ms
10,496 KB
testcase_27 AC 70 ms
16,000 KB
testcase_28 AC 81 ms
15,616 KB
testcase_29 AC 116 ms
19,328 KB
testcase_30 AC 77 ms
17,280 KB
testcase_31 AC 92 ms
15,488 KB
testcase_32 AC 34 ms
10,368 KB
testcase_33 AC 71 ms
16,640 KB
testcase_34 AC 83 ms
14,208 KB
testcase_35 AC 86 ms
19,456 KB
testcase_36 AC 90 ms
16,640 KB
testcase_37 AC 47 ms
10,880 KB
testcase_38 AC 62 ms
14,208 KB
testcase_39 AC 75 ms
12,416 KB
testcase_40 AC 88 ms
18,944 KB
testcase_41 AC 105 ms
20,480 KB
testcase_42 AC 46 ms
10,240 KB
testcase_43 AC 58 ms
13,312 KB
testcase_44 AC 31 ms
8,320 KB
testcase_45 AC 14 ms
6,528 KB
testcase_46 AC 97 ms
13,056 KB
testcase_47 AC 42 ms
8,576 KB
testcase_48 AC 41 ms
8,704 KB
testcase_49 AC 15 ms
5,376 KB
testcase_50 AC 45 ms
9,088 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 23 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N,M; cin >> N >> M;
    vector<vector<pair<int,int>>> Graph(4*N);
    for(int i=0; i<M; i++){
        int u,v; cin >> u >> v;
        u--; v--;
        for(int k=0; k<4; k++){
            Graph.at(u).push_back({v,1});
            u += N, v += N;
        }
    }

    Graph.at(N-2).push_back({N-2+N,0});
    Graph.at(N-2+2*N).push_back({N-2+3*N,0});
    Graph.at(N-1).push_back({N-1+2*N,0});
    Graph.at(N-1+N).push_back({N-1+3*N,0});

    vector<bool> already(4*N);
    vector<long long> dist(4*N,2e18);
    priority_queue<pair<long long,int>,vector<pair<long long,int>>,greater<pair<long long,int>>> Q;
    Q.push({0,0}); dist.at(0) = 0;
    while(Q.size()){
        auto[pdist,pos] = Q.top(); Q.pop();
        if(already.at(pos)) continue;
        already.at(pos) = true;
        
        for(auto [to,cost] : Graph.at(pos)){
            if(dist.at(to) > pdist+cost){
                dist.at(to) = pdist+cost;
                Q.push({dist.at(to),to});
            }
        }
    }

    if(dist.at(3*N) == 2e18) dist.at(3*N) = -1;
    cout << dist.at(3*N) << endl;
}
0