結果

問題 No.2739 Time is money
ユーザー you_physyou_phys
提出日時 2024-04-20 16:25:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,443 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 179,856 KB
実行使用メモリ 18,304 KB
最終ジャッジ日時 2024-10-12 12:13:40
合計ジャッジ時間 8,925 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 185 ms
12,160 KB
testcase_03 WA -
testcase_04 AC 172 ms
11,776 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 321 ms
17,536 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 216 ms
13,696 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 279 ms
13,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int INF = 1e9;

struct Edge {
    int to, cost, time;
    Edge(int t, int c, int ti) : to(t), cost(c), time(ti) {}
};

int main() {
    int N, M, X;
    cin >> N >> M >> X;

    vector<vector<Edge>> graph(N);
    for (int i = 0; i < M; i++) {
        int u, v, c, t;
        cin >> u >> v >> c >> t;
        u--, v--;
        graph[u].emplace_back(v, c, t);
        graph[v].emplace_back(u, c, t);
    }

    vector<int> dist(N, INF), money(N, 0);
    priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> pq;
    dist[0] = 0;
    pq.emplace(0, 0);

    while (!pq.empty()) {
        int cost = pq.top().first;
        int curr = pq.top().second;
        pq.pop();

        if (cost > dist[curr]) continue;

        for (Edge& e : graph[curr]) {
            int next_cost = cost + e.cost + e.time * X;
            int next_money = money[curr] + e.cost;
            if (next_cost < dist[e.to]) {
                dist[e.to] = next_cost;
                money[e.to] = next_money;
                pq.emplace(next_cost, e.to);
            } else if (next_cost == dist[e.to] && next_money < money[e.to]) {
                money[e.to] = next_money;
                pq.emplace(next_cost, e.to);
            }
        }
    }

    if (dist[N - 1] == INF) {
        cout << "-1" << endl;
    } else {
        cout << (dist[N - 1] + X - 1) / X << endl;
    }

    return 0;
}
0