結果

問題 No.807 umg tours
ユーザー MisterMister
提出日時 2020-08-02 00:00:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 311 ms / 4,000 ms
コード長 2,372 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 92,520 KB
実行使用メモリ 44,580 KB
最終ジャッジ日時 2024-05-03 00:25:20
合計ジャッジ時間 5,262 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 163 ms
32,280 KB
testcase_12 AC 152 ms
24,584 KB
testcase_13 AC 219 ms
33,620 KB
testcase_14 AC 84 ms
16,288 KB
testcase_15 AC 62 ms
13,568 KB
testcase_16 AC 240 ms
35,132 KB
testcase_17 AC 291 ms
41,956 KB
testcase_18 AC 290 ms
42,460 KB
testcase_19 AC 291 ms
39,260 KB
testcase_20 AC 145 ms
22,532 KB
testcase_21 AC 152 ms
23,308 KB
testcase_22 AC 55 ms
12,032 KB
testcase_23 AC 40 ms
10,112 KB
testcase_24 AC 138 ms
35,872 KB
testcase_25 AC 311 ms
44,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
#include <tuple>
#include <limits>

template <class T>
using MinHeap = std::priority_queue<T, std::vector<T>, std::greater<T>>;

template <class Cost = int>
struct Edge {
    int src, dst;
    Cost cost;
    Edge(int src = -1, int dst = -1, Cost cost = 1)
        : src(src), dst(dst), cost(cost){};

    bool operator<(const Edge<Cost>& e) const { return this->cost < e.cost; }
    bool operator>(const Edge<Cost>& e) const { return this->cost > e.cost; }
};

template <class Cost = int>
struct Graph {
    std::vector<std::vector<Edge<Cost>>> graph;

    Graph(int n = 0) : graph(n) {}

    void span(bool direct, int src, int dst, Cost cost = 1) {
        graph[src].emplace_back(src, dst, cost);
        if (!direct) graph[dst].emplace_back(dst, src, cost);
    }

    int size() const { return graph.size(); }
    void clear() { graph.clear(); }
    void resize(int n) { graph.resize(n); }

    std::vector<Edge<Cost>>& operator[](int v) { return graph[v]; }
    std::vector<Edge<Cost>> operator[](int v) const { return graph[v]; }
};

template <class Cost>
std::vector<Cost> dijkstra(const Graph<Cost>& graph, int s) {
    constexpr Cost INF = std::numeric_limits<Cost>::max();

    std::vector<Cost> dist(graph.size(), INF);
    dist[s] = 0;
    MinHeap<std::pair<Cost, int>> que;
    que.emplace(0, s);

    while (!que.empty()) {
        int v;
        Cost d;
        std::tie(d, v) = que.top();
        que.pop();
        if (d > dist[v]) continue;

        for (const auto& e : graph[v]) {
            if (dist[e.dst] <= dist[v] + e.cost) continue;
            dist[e.dst] = dist[v] + e.cost;
            que.emplace(dist[e.dst], e.dst);
        }
    }

    return dist;
}

using lint = long long;

void solve() {
    int n, m;
    std::cin >> n >> m;

    Graph<lint> graph(n * 2);
    while (m--) {
        int u, v;
        lint c;
        std::cin >> u >> v >> c;
        --u, --v;

        graph.span(false, u, v, c);
        graph.span(false, u + n, v + n, c);
        graph.span(true, u, v + n, 0);
        graph.span(true, v, u + n, 0);
    }

    auto ds = dijkstra(graph, 0);

    for (int v = 0; v < n; ++v) {
        std::cout << ds[v] + std::min(ds[v], ds[v + n]) << "\n";
    }
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0