結果

問題 No.1812 Uribo Road
ユーザー trineutrontrineutron
提出日時 2022-01-14 22:29:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,532 bytes
コンパイル時間 3,735 ms
コンパイル使用メモリ 258,880 KB
実行使用メモリ 1,502,252 KB
最終ジャッジ日時 2024-11-20 12:04:04
合計ジャッジ時間 35,556 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 28 ms
7,040 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 44 ms
9,344 KB
testcase_09 AC 90 ms
14,220 KB
testcase_10 AC 33 ms
8,704 KB
testcase_11 AC 15 ms
6,820 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 1,078 ms
82,056 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 AC 189 ms
24,740 KB
testcase_24 AC 2 ms
6,692 KB
testcase_25 AC 23 ms
6,692 KB
testcase_26 AC 23 ms
6,692 KB
testcase_27 TLE -
testcase_28 AC 39 ms
6,784 KB
testcase_29 AC 2 ms
6,692 KB
testcase_30 AC 206 ms
22,484 KB
testcase_31 MLE -
testcase_32 AC 47 ms
8,448 KB
testcase_33 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using edge = pair<int, int>;
using graph = vector<vector<edge>>;

int main()
{
    int n, m, k;
    cin >> n >> m >> k;
    vector<bool> must(m);
    for (int i = 0; i < k; i++)
    {
        int r;
        cin >> r;
        r--;
        must.at(r) = true;
    }
    const int s = 1 << k;
    graph to(n * s);
    int idx = 0;
    for (int i = 0; i < m; i++)
    {
        int a, b, c;
        cin >> a >> b >> c;
        a--;
        b--;
        for (int j = 0; j < s; j++)
        {
            if (must.at(i))
            {
                to.at(a * s + j).emplace_back(b * s + (j | (1 << idx)), c);
                to.at(b * s + j).emplace_back(a * s + (j | (1 << idx)), c);
            }
            else
            {
                to.at(a * s + j).emplace_back(b * s + j, c);
                to.at(b * s + j).emplace_back(a * s + j, c);
            }
        }
        if (must.at(i))
        {
            idx++;
        }
    }
    vector<int> dist(n * s, 1e9);
    priority_queue<edge, vector<edge>, greater<edge>> q;
    q.emplace(0, 0);
    while (not q.empty())
    {
        auto [d0, v] = q.top();
        q.pop();
        if (d0 >= dist.at(v))
        {
            continue;
        }
        dist.at(v) = d0;
        for (auto &&[c, d_edge] : to.at(v))
        {
            if (d0 + d_edge >= dist.at(c))
            {
                continue;
            }
            q.emplace(d0 + d_edge, c);
        }
    }
    cout << dist.back() << endl;
    return 0;
}
0