結果

問題 No.2916 累進コスト最小化
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-10-04 22:36:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 301 ms / 3,500 ms
コード長 2,182 bytes
コンパイル時間 4,520 ms
コンパイル使用メモリ 322,796 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-05 01:06:42
合計ジャッジ時間 8,552 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,824 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 1 ms
6,820 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 1 ms
6,820 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 1 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 141 ms
6,816 KB
testcase_25 AC 166 ms
6,816 KB
testcase_26 AC 301 ms
6,820 KB
testcase_27 AC 273 ms
6,816 KB
testcase_28 AC 225 ms
6,820 KB
testcase_29 AC 243 ms
6,816 KB
testcase_30 AC 190 ms
6,816 KB
testcase_31 AC 207 ms
6,816 KB
testcase_32 AC 232 ms
6,820 KB
testcase_33 AC 233 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;

typedef long long ll;

template <typename T> struct Graph {
    struct edge {
        int to;
        T r, w;
    };
    int N;
    vector<vector<edge>> G;
    vector<T> dist;
    vector<int> prever;

    Graph(int n) { init(n); }
    T inf() {
        if (is_same_v<T, int>)
            return 1e9;
        else
            return 1e18;
    }
    T zero() { return T(0); }

    void init(int n) {
        N = n;
        G.resize(N);
        dist.resize(N, inf());
    }
    void add_edge(int s, int t, T r, T w) {
        edge e;
        e.to = t;
        e.r = r;
        e.w = w;
        G[s].push_back(e);
    }
    void dijkstra(int s, T c) {
        rep(i, 0, N) dist[i] = -1;
        prever = vector<int>(N, -1);
        dist[s] = c;
        priority_queue<pair<T, int>> q;
        q.push({c, s});
        while (!q.empty()) {
            int now;
            T nowdist;
            tie(nowdist, now) = q.top();
            q.pop();
            if (dist[now] < nowdist)
                continue;
            for (auto e : G[now]) {
                T cost = nowdist / e.r + e.w;
                T nextdist = nowdist - cost;
                if (dist[e.to] < nextdist && nextdist >= 0) {
                    dist[e.to] = nextdist;
                    prever[e.to] = now;
                    q.push({nextdist, e.to});
                }
            }
        }
    }

    vector<int> get_path(int t) { // tへの最短路構築
        if (dist[t] >= inf())
            return {-1};
        vector<int> path;
        for (; t != -1; t = prever[t]) {
            path.push_back(t);
        }
        reverse(path.begin(), path.end());
        return path;
    }
};

int main() {
    int n, m;
    ll c;
    cin >> n >> m >> c;
    Graph<ll> g(n);
    rep(i, 0, m) {
        int a, b;
        ll c, d;
        cin >> a >> b >> c >> d;
        a--;
        b--;
        g.add_edge(a, b, c, d);
        g.add_edge(b, a, c, d);
    }
    rep(i, 1, c + 1) {
        g.dijkstra(0, i);
        cout << g.dist[n - 1] << endl;
    }
}
0