結果

問題 No.807 umg tours
ユーザー uchiiiiuchiiii
提出日時 2020-08-10 23:00:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,651 bytes
コンパイル時間 3,606 ms
コンパイル使用メモリ 238,392 KB
実行使用メモリ 22,864 KB
最終ジャッジ日時 2024-10-08 19:23:36
合計ジャッジ時間 7,985 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,040 KB
testcase_01 WA -
testcase_02 AC 5 ms
7,296 KB
testcase_03 AC 5 ms
7,168 KB
testcase_04 WA -
testcase_05 AC 5 ms
7,168 KB
testcase_06 AC 5 ms
7,296 KB
testcase_07 AC 4 ms
7,168 KB
testcase_08 AC 4 ms
7,168 KB
testcase_09 AC 4 ms
7,168 KB
testcase_10 AC 5 ms
7,040 KB
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 AC 99 ms
18,080 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("03")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std; typedef long double ld; typedef long long ll;
typedef unsigned long long ull;
#define endl "\n"
#define FOR(i,a,b) for(int i=(a);i<=(b);i++)
#define rep(i,n) for(int i=0;i<(n);i++)
#define PII pair<int, int>
#define PLL pair<ll, ll>
#define ALL(x) (x).begin(), (x).end()
constexpr int INF=1<<30; constexpr ll LINF=1LL<<60; constexpr ll mod=1e9+7; constexpr int NIL = -1;
template<class T>inline bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; }
template<class T>inline bool chmin(T &a, const T &b) { if (b<a) { a = b; return 1; } return 0; }
template<class T>inline int popcount(T a) {return __builtin_popcount(a);}
//-------------------
struct Edge {
    int to;
    ll cost;
    Edge(int to, ll ct): to(to), cost(ct) {}
};

using TIIL = tuple<ll, int, ll>;
constexpr int MX = 1e5+4;
vector<vector<Edge>> G(MX);
vector<ll> d1(MX, LINF);
vector<ll> d2(MX, LINF);

void dijkstra(int s, vector<ll> &d) {
    priority_queue<PII, vector<PII>, greater<PII> > que;
    que.push({0, s});

    while (!que.empty()) {
        PII p = que.top();
        que.pop();
        int v = p.second;
        if (d[v] <= p.first) continue;
        d[v] = p.first;
        for (auto e: G[v]) {
            if (d[e.to] > d[v] + e.cost) { // make code faster
                que.push({d[v] + e.cost, e.to});
            }
        }
    }
}

void dijkstra2(int s, vector<ll> &d) {
    priority_queue<TIIL, vector<TIIL>, greater<TIIL> > que;
    que.push({0, s, 0});

    while (!que.empty()) {
        auto [ct, to, mx] = que.top();
        que.pop();
        if (d[to] <= ct) continue;
        // cout << to << " " << ct << mx << endl;
        d[to] = ct;
        for (auto e: G[to]) {
            ll curmx = max(mx, e.cost);
            // cout << e.to << " " << d[e.to] << " " << d[to] + mx + e.cost - curmx << endl;
            if (d[e.to] > d[to] + mx + e.cost - curmx) { // make code faster
                que.push({d[to] + mx + e.cost - curmx, e.to, curmx});
                // cout << e.to << endl;
            }
        }
    }
}

int main() {
    cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(15);
    int n,m; cin >> n >> m;
    rep(i, m) {
        int a,b; ll c; cin >> a >> b >> c;
        G[a].emplace_back(b,c);
        G[b].emplace_back(a,c);
        // cout << G[a].back().to << " " << G[b].back().to << endl;
    }

    dijkstra(1, d1);
    dijkstra2(1, d2);

    FOR(i,1,n) {
        // cout << d1[i] << " ";
        cout << d1[i] + d2[i] << endl;
    }
    return 0;
}
0