結果

問題 No.2916 累進コスト最小化
ユーザー n0ma_run0ma_ru
提出日時 2024-10-04 23:01:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 3,500 ms
コード長 2,382 bytes
コンパイル時間 1,949 ms
コンパイル使用メモリ 215,860 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-05 01:06:51
合計ジャッジ時間 3,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 21 ms
5,248 KB
testcase_25 AC 30 ms
5,248 KB
testcase_26 AC 65 ms
5,248 KB
testcase_27 AC 62 ms
5,248 KB
testcase_28 AC 55 ms
5,248 KB
testcase_29 AC 59 ms
5,248 KB
testcase_30 AC 41 ms
5,248 KB
testcase_31 AC 53 ms
5,248 KB
testcase_32 AC 60 ms
5,248 KB
testcase_33 AC 60 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
class Comb
{
  int siz, mod;
  std::vector<long long> _fac, _inv, _finv;
public:
  // 引数は (mod)
  Comb(int m) : mod(m), siz(2)
  {
    _fac.resize(siz);
    _inv.resize(siz);
    _finv.resize(siz);
    _fac[0] = _fac[1] = _inv[1] = _finv[0] = _finv[1] = 1;
  }
  long long p(int n, int k)
  {
    if (n < k || k < 0) return 0;
    resize(n + 1);
    return _fac[n] * _finv[n - k] % mod;
  }
  long long c(int n, int k)
  {
    if (n < k || k < 0) return 0;
    resize(n + 1);
    return _fac[n] * _finv[k] % mod * _finv[n - k] % mod;
  }
  long long inv(int n)
  {
    assert(n >= 0);
    resize(n + 1);
    return _inv[n];
  }
  long long fac(int n)
  {
    assert(n >= 0);
    resize(n + 1);
    return _fac[n];
  }
  long long finv(int n)
  {
    assert(n >= 0);
    resize(n + 1);
    return _finv[n];
  }
private:
  void resize(int n)
  {
    if (n <= siz) return;
    for (int i = siz; i < n; ++i)
    {
      _fac.push_back((long long)i * _fac[i - 1] % mod);
      _inv.push_back(mod - _inv[mod % i] * (mod / i) % mod);
      _finv.push_back(_finv[i - 1] * _inv[i] % mod);
    }
    siz = n;
  }
};
int n,m,c;
vector<vector<tuple<int,int,int>>> g;
int inf = 1e9;

int dijkstra(int C) {
    vector<int> dp(n, -inf);
    priority_queue<pair<int,int>> pq;
    dp[0] = C;
    pq.emplace(C, 0);
    while (pq.size()) {
        auto [d, pos] = pq.top();
        pq.pop();
        if (dp[pos] > d) continue;

        for (auto&& [to,a,b] : g[pos]) {
            int cost = d / a + b;
            if (cost <= d && dp[to] < d - cost) {
                dp[to] = d - cost;
                pq.emplace(dp[to], to);
            }
        }
    }
    return dp[n-1];
}

int main() {
    cin >> n >> m >> c;
    if (false) {
        Comb cb(1e9 + 7);
        ll ans = 0;
        for (int i = 0; i <= n; ++i) {
            dbg(cb.c(n, i))
            ans += cb.p(n, i);
        }
        dbg(ans)
    }
    g.resize(n);
    for (int i = 0; i < m; ++i) {
        int a,b,c,d;
        cin >> a >> b >> c >> d;
        --a; --b;
        g[a].push_back({b,c,d});
        g[b].push_back({a,c,d});
    }
    for (int x = 1; x <= c; ++x) {
        int ans = dijkstra(x);
        if (ans == -inf) ans = -1;
        cout << ans << '\n';
    }
}
0