結果

問題 No.807 umg tours
ユーザー finefine
提出日時 2019-03-22 23:33:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,916 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 180,572 KB
実行使用メモリ 24,372 KB
最終ジャッジ日時 2024-09-19 07:03:34
合計ジャッジ時間 6,775 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

struct State {
    int at;
    ll cost;
    int used;
    int prev;
    State(int at, ll cost, int prev) : at(at), cost(cost), used(false), prev(prev) {}
    State(int at, ll cost, int used, int prev) : at(at), cost(cost), used(used), prev(prev) {}
    bool operator>(const State& s) const {
        return cost > s.cost;
    }
};

struct Edge {
  int to;
  ll cost;
  Edge(int to, ll cost) : to(to), cost(cost) {}
};

typedef vector<vector<Edge> > AdjList; //隣接リスト

const ll INF = 1e18;
const int NONE = -1;

AdjList graph;

//sは始点、mincは最短経路のコスト、Prevは最短経路をたどる際の前の頂点
void dijkstra(int s, vector< vector<ll> >& minc){
    priority_queue<State, vector<State>, greater<State> > pq;
    pq.push(State(s, 0, NONE));
    while(!pq.empty()) {
        State cur = pq.top();
        pq.pop();
        if (minc[cur.used][cur.at] <= cur.cost) continue;
        minc[cur.used][cur.at] = cur.cost;
        for(Edge e : graph[cur.at]) {
            ll cost = cur.cost + e.cost;
            if (minc[cur.used][e.to] <= cost) continue;
            pq.push(State(e.to, cost, cur.used, cur.at));

            if (!cur.used) {
                cost = cur.cost;
                if (minc[1][e.to] <= cost) continue;
                pq.push(State(e.to, cost, true, cur.at));
            }
        }
    }
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n, m;
    cin >> n >> m;
    graph.resize(n);
    for (int i = 0; i < m; i++) {
        int a, b;
        ll c;
        cin >> a >> b >> c;
        a--; b--;
        graph[a].emplace_back(b, c);
        graph[b].emplace_back(a, c);
    }

    vector< vector<ll> > minc(2, vector<ll>(n, INF));

    dijkstra(0, minc);

    for (int i = 0; i < n; i++) {
        cout << minc[0][i] + minc[1][i] << endl;
    }
    return 0;
}
0