結果

問題 No.2387 Yokan Factory
ユーザー RubikunRubikun
提出日時 2023-07-21 21:25:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 466 ms / 5,000 ms
コード長 1,532 bytes
コンパイル時間 2,346 ms
コンパイル使用メモリ 211,092 KB
実行使用メモリ 15,968 KB
最終ジャッジ日時 2024-09-21 22:40:12
合計ジャッジ時間 7,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,496 KB
testcase_01 AC 5 ms
10,496 KB
testcase_02 AC 5 ms
10,368 KB
testcase_03 AC 5 ms
10,496 KB
testcase_04 AC 5 ms
10,240 KB
testcase_05 AC 5 ms
10,368 KB
testcase_06 AC 5 ms
10,496 KB
testcase_07 AC 6 ms
10,240 KB
testcase_08 AC 6 ms
10,368 KB
testcase_09 AC 6 ms
10,368 KB
testcase_10 AC 5 ms
10,368 KB
testcase_11 AC 5 ms
10,240 KB
testcase_12 AC 6 ms
10,496 KB
testcase_13 AC 5 ms
10,368 KB
testcase_14 AC 6 ms
10,496 KB
testcase_15 AC 183 ms
15,968 KB
testcase_16 AC 98 ms
14,820 KB
testcase_17 AC 271 ms
15,124 KB
testcase_18 AC 338 ms
14,380 KB
testcase_19 AC 252 ms
13,304 KB
testcase_20 AC 195 ms
12,976 KB
testcase_21 AC 466 ms
14,216 KB
testcase_22 AC 176 ms
12,868 KB
testcase_23 AC 284 ms
13,188 KB
testcase_24 AC 99 ms
13,028 KB
testcase_25 AC 156 ms
12,160 KB
testcase_26 AC 323 ms
13,680 KB
testcase_27 AC 402 ms
13,960 KB
testcase_28 AC 7 ms
10,496 KB
testcase_29 AC 7 ms
10,496 KB
testcase_30 AC 7 ms
10,624 KB
testcase_31 AC 6 ms
10,624 KB
testcase_32 AC 6 ms
10,240 KB
testcase_33 AC 6 ms
10,496 KB
testcase_34 AC 7 ms
10,624 KB
testcase_35 AC 7 ms
10,496 KB
testcase_36 AC 6 ms
10,496 KB
testcase_37 AC 6 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005;
const ll INF=1LL<<60;

vector<pair<int,pair<int,int>>> G[MAX];
ll dis[MAX];

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    ll N,M,X;cin>>N>>M>>X;
    for(int i=0;i<M;i++){
        int a,b,c,d;cin>>a>>b>>c>>d;a--;b--;
        G[a].push_back(mp(b,mp(c,d)));
        G[b].push_back(mp(a,mp(c,d)));
    }
    ll left=0,right=2e9;
    while(right-left>1){
        ll mid=(left+right)/2;
        for(int i=0;i<N;i++) dis[i]=INF;
        dis[0]=0;
        
        priority_queue<pair<ll,int>,vector<pair<ll,int>>,greater<pair<ll,int>>> PQ;
        PQ.push(mp(0,0));
        
        while(!PQ.empty()){
            auto [d,u]=PQ.top();PQ.pop();
            if(dis[u]<d) continue;
            for(auto to:G[u]){
                auto t=to.fi;
                auto [a,b]=to.se;
                if(b<mid) continue;
                if(chmin(dis[t],dis[u]+a)) PQ.push(mp(dis[t],t));
            }
        }
        
        if(dis[N-1]<=X) left=mid;
        else right=mid;
    }
    
    if(left==0) left=-1;
    cout<<left<<endl;
}
0