結果

問題 No.807 umg tours
ユーザー TiramisterTiramister
提出日時 2019-03-22 23:02:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 665 ms / 4,000 ms
コード長 2,041 bytes
コンパイル時間 1,141 ms
コンパイル使用メモリ 90,728 KB
実行使用メモリ 44,456 KB
最終ジャッジ日時 2024-05-02 23:30:40
合計ジャッジ時間 9,003 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 370 ms
32,264 KB
testcase_12 AC 358 ms
24,664 KB
testcase_13 AC 506 ms
33,628 KB
testcase_14 AC 200 ms
16,380 KB
testcase_15 AC 156 ms
13,668 KB
testcase_16 AC 521 ms
35,216 KB
testcase_17 AC 665 ms
41,652 KB
testcase_18 AC 662 ms
41,420 KB
testcase_19 AC 655 ms
39,376 KB
testcase_20 AC 387 ms
22,656 KB
testcase_21 AC 404 ms
23,168 KB
testcase_22 AC 162 ms
11,904 KB
testcase_23 AC 122 ms
10,112 KB
testcase_24 AC 348 ms
34,348 KB
testcase_25 AC 660 ms
44,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;

template <class T>
struct Edge {
    int from, to;
    T cost;
    Edge(int from = -1, int to = -1, T cost = 1) : from(from), to(to), cost(cost){};

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

template <class T = int>
class Graph {
public:
    explicit Graph(int N = 0) : size(N) { path.resize(size); }
    void span(int u, int v, T cost = 1) { path[u].push_back(Edge<T>(u, v, cost)); }
    std::vector<Edge<T>> operator[](int v) const { return path[v]; }

    int size;
    std::vector<std::vector<Edge<T>>> path;
};

const ll INF = std::numeric_limits<ll>::max();

template <class T>
std::vector<T> dijkstra(const Graph<T>& graph, std::vector<int> ss) {
    std::vector<T> dist(graph.size, INF);
    std::priority_queue<std::pair<int, T>, std::vector<std::pair<int, T>>, std::greater<std::pair<int, T>>> que;

    for (auto s : ss) {
        dist[s] = 0;
        que.emplace(0, s);
    }

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

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

int main() {
    int N, M;
    std::cin >> N >> M;
    Graph<ll> graph(N * 2);
    for (int i = 0; i < M; ++i) {
        int u, v;
        ll c;
        std::cin >> u >> v >> c;
        --u, --v;
        graph.span(u, v, c);
        graph.span(v, u, c);
        graph.span(u, v + N, 0);
        graph.span(v, u + N, 0);
        graph.span(u + N, v + N, c);
        graph.span(v + N, u + N, c);
    }

    auto dist = dijkstra<ll>(graph, {0, N});
    for (int v = 0; v < N; ++v) {
        std::cout << dist[v] + dist[v + N] << std::endl;
    }
    return 0;
}
0