結果

問題 No.788 トラックの移動
ユーザー H3PO4H3PO4
提出日時 2024-06-22 11:06:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 783 ms / 2,000 ms
コード長 1,730 bytes
コンパイル時間 1,109 ms
コンパイル使用メモリ 91,428 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2024-06-22 11:06:25
合計ジャッジ時間 6,253 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 782 ms
34,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 171 ms
11,392 KB
testcase_05 AC 777 ms
34,816 KB
testcase_06 AC 752 ms
34,816 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 376 ms
34,816 KB
testcase_16 AC 783 ms
34,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <vector>

std::vector<long> dijkstra(int N,
                           std::vector<std::vector<std::pair<int, long>>> G,
                           int s) {
    using P = std::pair<long, int>;
    std::vector<long> dist(N, INT64_MAX);
    std::priority_queue<P, std::vector<P>, std::greater<P>> q;
    dist.at(s) = 0;
    q.emplace(0, s);
    while (q.size()) {
        auto [c, v] = q.top();
        q.pop();
        if (dist.at(v) < c) continue;
        for (const auto& [t, cost] : G.at(v)) {
            if (dist.at(v) + cost < dist.at(t)) {
                dist.at(t) = dist.at(v) + cost;
                q.emplace(dist.at(t), t);
            }
        }
    }
    return dist;
}

int main() {
    int N, M, L;
    std::cin >> N >> M >> L;
    L--;
    std::vector<long> T(N);
    for (int i = 0; i < N; i++) {
        std::cin >> T[i];
    }
    std::vector<std::vector<std::pair<int, long>>> G(N);
    for (int i = 0; i < M; i++) {
        int a, b, c;
        std::cin >> a >> b >> c;
        a--;
        b--;
        G.at(a).emplace_back(b, c);
        G.at(b).emplace_back(a, c);
    }

    std::vector<std::vector<long>> dist_all(N);
    for (int s = 0; s < N; s++) {
        dist_all.at(s) = dijkstra(N, G, s);
    }
    long ans = INT64_MAX;
    for (int t = 0; t < N; t++) {
        long s = 0;
        for (int x = 0; x < N; x++) {
            s += T[x] * 2 * dist_all[x][t];
        }
        long m = 0;
        for (int x = 0; x < N; x++) {
            if (T[x] == 0) continue;
            long tmp_m = dist_all[t][x] - dist_all[L][x];
            if (m < tmp_m) m = tmp_m;
        }
        if (ans > s - m) ans = s - m;
    }
    std::cout << ans << std::endl;
}
0