結果

問題 No.2387 Yokan Factory
ユーザー にしろにしろ
提出日時 2024-04-26 03:41:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 402 ms / 5,000 ms
コード長 1,119 bytes
コンパイル時間 5,447 ms
コンパイル使用メモリ 315,912 KB
実行使用メモリ 13,024 KB
最終ジャッジ日時 2024-11-08 16:10:19
合計ジャッジ時間 10,719 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 254 ms
13,024 KB
testcase_16 AC 156 ms
12,140 KB
testcase_17 AC 377 ms
12,232 KB
testcase_18 AC 233 ms
10,900 KB
testcase_19 AC 281 ms
9,056 KB
testcase_20 AC 238 ms
8,324 KB
testcase_21 AC 400 ms
10,500 KB
testcase_22 AC 219 ms
7,896 KB
testcase_23 AC 309 ms
8,868 KB
testcase_24 AC 155 ms
8,252 KB
testcase_25 AC 183 ms
6,484 KB
testcase_26 AC 341 ms
9,628 KB
testcase_27 AC 402 ms
10,388 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 5 ms
5,248 KB
testcase_30 AC 4 ms
5,248 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 4 ms
5,248 KB
testcase_35 AC 4 ms
5,248 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
const ll inf=9e18;

int main(){

    ll n,m,x;
    cin >> n >> m >> x;
    vector<vector<array<ll,3>>> g(n);

    for(ll i=0;i<m;i++){
        ll u,v,a,b;
        cin >> u >> v >> a >> b;
        u--, v--;
        g[u].push_back({v,a,b});
        g[v].push_back({u,a,b});
    }

    ll ng=1e18+2,ok=-1;

    while(ng-ok>1){

        ll m=(ok+ng)/2;
        vector<ll> total_cost(n,inf);
        total_cost[0]=0;
        priority_queue<pair<ll,ll>,vector<pair<ll,ll>>,greater<pair<ll,ll>>> q;
        q.push({0,0});

        while(q.size()){
            auto[cost,now]=q.top();
            q.pop();
            if(total_cost[now]<cost) continue;
            for(auto[next,a,b]:g[now]){
                if(m>b) continue;
                if(total_cost[next]<=total_cost[now]+a) continue;
                total_cost[next]=total_cost[now]+a;
                q.push({total_cost[next],next});
            }
        }

        if(total_cost[n-1]<=x) ok=m;
        else ng=m;

    }

    if(ok==0) cout << -1;
    else cout << ok;
    
}
0