結果

問題 No.2565 はじめてのおつかい
ユーザー momoyuumomoyuu
提出日時 2023-12-15 14:26:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 1,160 bytes
コンパイル時間 1,346 ms
コンパイル使用メモリ 114,696 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-09-27 06:25:06
合計ジャッジ時間 4,842 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 52 ms
14,060 KB
testcase_04 AC 36 ms
14,080 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 40 ms
6,944 KB
testcase_07 AC 20 ms
6,940 KB
testcase_08 AC 25 ms
6,944 KB
testcase_09 AC 34 ms
6,944 KB
testcase_10 AC 29 ms
6,940 KB
testcase_11 AC 65 ms
9,600 KB
testcase_12 AC 10 ms
6,940 KB
testcase_13 AC 27 ms
6,940 KB
testcase_14 AC 48 ms
7,552 KB
testcase_15 AC 48 ms
6,944 KB
testcase_16 AC 32 ms
11,904 KB
testcase_17 AC 8 ms
6,944 KB
testcase_18 AC 11 ms
6,940 KB
testcase_19 AC 46 ms
8,576 KB
testcase_20 AC 39 ms
8,320 KB
testcase_21 AC 33 ms
8,320 KB
testcase_22 AC 16 ms
6,940 KB
testcase_23 AC 26 ms
6,940 KB
testcase_24 AC 5 ms
6,944 KB
testcase_25 AC 41 ms
8,320 KB
testcase_26 AC 26 ms
6,940 KB
testcase_27 AC 26 ms
8,832 KB
testcase_28 AC 39 ms
8,448 KB
testcase_29 AC 52 ms
10,368 KB
testcase_30 AC 30 ms
9,344 KB
testcase_31 AC 42 ms
8,448 KB
testcase_32 AC 15 ms
6,940 KB
testcase_33 AC 27 ms
9,088 KB
testcase_34 AC 40 ms
7,808 KB
testcase_35 AC 29 ms
10,624 KB
testcase_36 AC 38 ms
9,216 KB
testcase_37 AC 24 ms
6,940 KB
testcase_38 AC 25 ms
7,552 KB
testcase_39 AC 44 ms
7,040 KB
testcase_40 AC 31 ms
10,112 KB
testcase_41 AC 41 ms
10,880 KB
testcase_42 AC 26 ms
6,940 KB
testcase_43 AC 24 ms
7,168 KB
testcase_44 AC 17 ms
6,940 KB
testcase_45 AC 8 ms
6,940 KB
testcase_46 AC 53 ms
7,168 KB
testcase_47 AC 25 ms
6,940 KB
testcase_48 AC 27 ms
6,940 KB
testcase_49 AC 10 ms
6,944 KB
testcase_50 AC 24 ms
6,944 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 AC 17 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<queue>

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

    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);
    }
    vector<vector<int>> ans(n,vector<int>(4,1e9));
    ans[0][0] = 0;
    using dat = pair<int,pair<int,int>>;
    priority_queue<dat,vector<dat>,greater<dat>> que;
    que.push(make_pair(0,make_pair(0,0)));
    while(que.size()){
        int ni = que.top().second.first;
        int t = que.top().second.second;
        if(que.top().first>ans[ni][t]) {
            que.pop();
            continue;
        }
        que.pop();
        for(auto&to:g[ni]){
            int need = ans[ni][t] + 1;
            int nt = t;
            if(to==n-2) nt |= 1;
            if(to==n-1) nt |= 2;
            if(ans[to][nt]<=need) continue;
            ans[to][nt] = need;
            que.push(make_pair(need,make_pair(to,nt)));
        }
    }
    if(ans[0][3]==1e9) ans[0][3] = -1;
    cout<<ans[0][3]<<endl;

}
0