結果

問題 No.2739 Time is money
ユーザー cho435cho435
提出日時 2024-04-13 19:29:21
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 969 bytes
コンパイル時間 853 ms
コンパイル使用メモリ 83,968 KB
実行使用メモリ 20,576 KB
最終ジャッジ日時 2024-10-10 17:42:37
合計ジャッジ時間 9,539 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <vector>
using namespace std;
using ll = long long;

int main() {
    ll N, M, X;
    cin >> N >> M >> X;
    vector<vector<pair<ll, ll>>> g(N);
    for (int i = 0; i < M; i++) {
        ll u, v, C, T;
        cin >> u >> v >> C >> T;
        u--;
        v--;
        g[u].push_back({v, C + T * X});
        g[v].push_back({u, C + T * X});
    }
    vector<ll> dist(N, 1e18);
    dist[0] = 0;
    priority_queue<pair<ll, ll>, vector<pair<ll, ll>>, greater<pair<ll, ll>>> pq;
    pq.push({0, 0});
    while (!pq.empty()) {
        auto [d, u] = pq.top();
        pq.pop();
        if (d > dist[u]) continue;
        for (auto [v, w] : g[u]) {
            if (dist[v] > dist[u] + w) {
                dist[v] = dist[u] + w;
                pq.push({dist[v], v});
            }
        }
    }
    if (dist[N - 1] == 1e18) {
        cout << -1 << endl;
    } else {
        cout << (dist[N - 1] + X - 1) / X << endl;
    }
}
0