結果

問題 No.1812 Uribo Road
ユーザー ぷらぷら
提出日時 2022-01-14 22:17:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,333 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 211,740 KB
実行使用メモリ 485,592 KB
最終ジャッジ日時 2024-11-20 11:22:38
合計ジャッジ時間 55,875 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
135,672 KB
testcase_02 AC 2 ms
135,680 KB
testcase_03 AC 13 ms
13,636 KB
testcase_04 AC 2 ms
196,564 KB
testcase_05 AC 2 ms
13,640 KB
testcase_06 AC 2 ms
13,764 KB
testcase_07 AC 2 ms
88,288 KB
testcase_08 AC 23 ms
6,816 KB
testcase_09 AC 47 ms
6,824 KB
testcase_10 AC 17 ms
6,816 KB
testcase_11 AC 10 ms
6,816 KB
testcase_12 TLE -
testcase_13 AC 152 ms
164,224 KB
testcase_14 AC 185 ms
164,352 KB
testcase_15 AC 336 ms
9,096 KB
testcase_16 AC 1,674 ms
38,784 KB
testcase_17 TLE -
testcase_18 AC 1,039 ms
8,900 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 80 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 17 ms
6,820 KB
testcase_26 AC 7 ms
6,820 KB
testcase_27 AC 527 ms
6,820 KB
testcase_28 AC 31 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 23 ms
6,816 KB
testcase_31 TLE -
testcase_32 AC 10 ms
6,820 KB
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

bool chmin(int &x,int y) {
    if(x > y) {
        x = y;
        return true;
    }
    return false;
}

int main() {
    int N,M,K;
    cin >> N >> M >> K;
    vector<int>R(K);
    for(int i = 0; i < K; i++) {
        cin >> R[i];
        R[i]--;
    }
    vector<vector<array<int,3>>>road(N);
    for(int i = 0; i < M; i++) {
        int A,B,C;
        cin >> A >> B >> C;
        A--;
        B--;
        int id = -1;
        for(int j = 0; j < K; j++) {
            if(R[j] == i) {
                id = j;
            }
        }
        road[A].push_back({B,C,id});
        road[B].push_back({A,C,id});
    }
    vector<vector<int>>dist(N,vector<int>(1 << K,1001001001));
    priority_queue<array<int,3>,vector<array<int,3>>,greater<array<int,3>>>que;
    dist[0][0] = 0;
    que.push({0,0,0});
    while (!que.empty()) {
        auto x = que.top();
        que.pop();
        if(dist[x[1]][x[2]] != x[0]) {
            continue;
        }
        for(auto i:road[x[1]]) {
            int to1 = i[0];
            int to2 = x[2];
            if(i[2] != -1) {
                to2 |= (1 << i[2]);
            }
            if(chmin(dist[to1][to2],i[1]+x[0])) {
                que.push({i[1]+x[0],to1,to2});
            }
        }
    }
    cout << dist[N-1][(1 << K)-1] << endl;
}
0