結果

問題 No.1812 Uribo Road
ユーザー MasKoaTSMasKoaTS
提出日時 2024-11-30 21:42:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 205 ms / 5,000 ms
コード長 2,632 bytes
コンパイル時間 2,661 ms
コンパイル使用メモリ 223,588 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-11-30 21:42:26
合計ジャッジ時間 5,724 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 11 ms
6,400 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 5 ms
5,248 KB
testcase_12 AC 76 ms
8,448 KB
testcase_13 AC 30 ms
8,448 KB
testcase_14 AC 29 ms
8,320 KB
testcase_15 AC 112 ms
5,640 KB
testcase_16 AC 50 ms
5,760 KB
testcase_17 AC 174 ms
7,296 KB
testcase_18 AC 180 ms
7,768 KB
testcase_19 AC 205 ms
9,344 KB
testcase_20 AC 200 ms
9,216 KB
testcase_21 AC 181 ms
9,232 KB
testcase_22 AC 177 ms
9,244 KB
testcase_23 AC 6 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 33 ms
5,248 KB
testcase_26 AC 7 ms
5,248 KB
testcase_27 AC 136 ms
6,068 KB
testcase_28 AC 51 ms
5,760 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 19 ms
5,248 KB
testcase_31 AC 120 ms
7,808 KB
testcase_32 AC 4 ms
5,248 KB
testcase_33 AC 47 ms
7,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


vector<int> dijkstra(int sv, vector<vector<Pair> >& graph, int N){
    vector<int> dp(N, inf);
    priority_queue<Pair, vector<Pair>, greater<Pair> > pq = {};
    pq.push({0, sv});
    while(!pq.empty()){
        auto[d, v] = pq.top();  pq.pop();
        if(dp[v] <= d){
            continue;
        }
        dp[v] = d;
        for(auto&[nv, nd] : graph[v]){
            pq.push({d + nd, nv});
        }
    }
    return dp;
}


int main(){
    int N, M, K;    cin >> N >> M >> K;
    vector<int> R(K);
    for(auto& x : R){
        cin >> x;   --x;
    }
    vector<vector<int> > edges(M);
    vector<vector<Pair> > graph(N, vector<Pair>({}));
    for(int i = 0; i < M; ++i){
        int x, y, z;    cin >> x >> y >> z;
        --x, --y;
        edges[i] = {x, y, z};
        graph[x].push_back({y, z});
        graph[y].push_back({x, z});
    }

    unordered_set<int> V = {};
    V.insert(0), V.insert(N - 1);
    for(auto r : R){
        V.insert(edges[r][0]);
        V.insert(edges[r][1]);
    }
    vector<vector<int> > dist(N, vector<int>({}));
    for(auto& sv : V){
        dist[sv] = dijkstra(sv, graph, N);
    }

    vector<vector<vector<int> > > dp(1 << K, vector<vector<int> >(K, vector<int>(2, inf)));
    for(int i = 0; i < K; ++i){
        for(int j = 0; j < 2; ++j){
            dp[1 << i][i][j] = dist[0][edges[R[i]][j ^ 1]] + edges[R[i]][2];
        }
    }
    for(int bit = 1; bit < (1 << K); ++bit){
        for(int s = 0; s < K; ++s){
            if((bit & (1 << s)) == 0){
                continue;
            }
            for(int t = 0; t < K; ++t){
                if(bit & (1 << t)){
                    continue;
                }
                int nbit = bit | (1 << t);
                int c = edges[R[t]][2];
                for(int x = 0; x < 2; ++x){
                    for(int y = 0; y < 2; ++y){
                        int p = edges[R[s]][x], q = edges[R[t]][y ^ 1];
                        int d = dp[bit][s][x] + dist[p][q] + c;
                        if(dp[nbit][t][y] <= d){
                            continue;
                        }
                        dp[nbit][t][y] = d;
                    }
                }
            }
        }
    }

    int ans = inf;
    for(int i = 0; i < K; ++i){
        for(int j = 0; j < 2; ++j){
            int d = dp[(1 << K) - 1][i][j] + dist[edges[R[i]][j]][N - 1];
            if(ans <= d){
                continue;
            }
            ans = d;
        }
    }
    cout << ans << endl;

    return 0;
}
0