結果

問題 No.2916 累進コスト最小化
ユーザー GOTKAKOGOTKAKO
提出日時 2024-10-04 23:17:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 3,500 ms
コード長 941 bytes
コンパイル時間 1,985 ms
コンパイル使用メモリ 215,120 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-05 01:06:57
合計ジャッジ時間 3,584 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N,M,C; cin >> N >> M >> C;
    vector<vector<tuple<int,int,int>>> Graph(N);
    for(int i=0; i<M; i++){
        int u,v; cin >> u >> v;
        u--; v--;
        int r,w; cin >> r >> w;
        Graph.at(u).push_back({v,r,w});
        Graph.at(v).push_back({u,r,w});
    }

    for(int i=1; i<=C; i++){
        vector<int> dist(N,-1);
        dist.at(0) = i;
        priority_queue<pair<int,int>> Q;
        Q.push({dist.at(0),0});
        while(Q.size()){
            auto [nowc,pos] = Q.top(); Q.pop();
            for(auto [to,r,w] : Graph.at(pos)){
                int cost = nowc/r+w;
                if(dist.at(to) < nowc-cost){
                    dist.at(to) = nowc-cost;
                    Q.push({dist.at(to),to});
                }
            }
        }
        cout << dist.at(N-1) << "\n";
    }
}
0