結果

問題 No.1995 CHIKA Road
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-01 16:21:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 1,269 bytes
コンパイル時間 2,541 ms
コンパイル使用メモリ 220,536 KB
実行使用メモリ 26,436 KB
最終ジャッジ日時 2024-12-01 16:21:19
合計ジャッジ時間 6,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 13 ms
5,248 KB
testcase_07 AC 41 ms
7,772 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 68 ms
7,640 KB
testcase_11 AC 229 ms
26,436 KB
testcase_12 AC 152 ms
16,924 KB
testcase_13 AC 66 ms
10,780 KB
testcase_14 AC 71 ms
11,188 KB
testcase_15 AC 202 ms
23,928 KB
testcase_16 AC 22 ms
5,504 KB
testcase_17 AC 93 ms
12,488 KB
testcase_18 AC 150 ms
18,716 KB
testcase_19 AC 150 ms
18,712 KB
testcase_20 AC 80 ms
11,620 KB
testcase_21 AC 72 ms
11,028 KB
testcase_22 AC 143 ms
17,992 KB
testcase_23 AC 43 ms
7,924 KB
testcase_24 AC 125 ms
16,284 KB
testcase_25 AC 25 ms
6,272 KB
testcase_26 AC 50 ms
8,988 KB
testcase_27 AC 118 ms
15,952 KB
testcase_28 AC 73 ms
11,072 KB
testcase_29 AC 154 ms
18,412 KB
testcase_30 AC 25 ms
5,888 KB
testcase_31 AC 13 ms
5,248 KB
testcase_32 AC 31 ms
6,904 KB
testcase_33 AC 118 ms
15,928 KB
testcase_34 AC 14 ms
5,248 KB
testcase_35 AC 48 ms
8,320 KB
testcase_36 AC 55 ms
9,436 KB
testcase_37 AC 136 ms
17,320 KB
testcase_38 AC 94 ms
13,312 KB
testcase_39 AC 11 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define inf 2000000000
using namespace std;
using Pair = pair<int, int>;


int main(){
    int n, m;   cin >> n >> m;
    vector<pair<int, int> > edges(m);
    for(auto&[x, y] : edges){
        cin >> x >> y;
        --x, --y;
    }

    vector<int> V = {0, n - 1};
    for(auto&[x, y] : edges){
        V.push_back(x);
        V.push_back(y);
    }
    sort(V.begin(), V.end());
    V.erase(unique(V.begin(), V.end()), V.end());
    int N = (int)V.size();
    unordered_map<int, int> mp = {};
    for(int i = 0; i < N; ++i){
        mp[V[i]] = i;
    }

    vector<vector<Pair> > graph(N, vector<Pair>({}));
    for(int i = 0; i < N; ++i){
        graph[i].push_back({i + 1, 2 * (V[i + 1] - V[i])});
    }
    for(auto&[x, y] : edges){
        graph[mp[x]].push_back({mp[y], 2 * y - 2 * x - 1});
    }

    vector<int> dp(N, inf);
    priority_queue<Pair, vector<Pair>, greater<Pair> > pq;
    pq.push({0, 0});
    while(!pq.empty()){
        auto[c, v] = pq.top();  pq.pop();
        if(dp[v] <= c){
            continue;
        }
        dp[v] = c;
        if(v == N - 1){
            break;
        }
        for(auto&[nv, nd] : graph[v]){
            pq.push({c + nd, nv});
        }
    }
    cout << dp[N - 1] << endl;

    return 0;
}
0