結果

問題 No.2387 Yokan Factory
ユーザー cubinglovercubinglover
提出日時 2023-07-21 21:58:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 483 ms / 5,000 ms
コード長 859 bytes
コンパイル時間 859 ms
コンパイル使用メモリ 85,800 KB
実行使用メモリ 10,084 KB
最終ジャッジ日時 2024-09-21 23:30:36
合計ジャッジ時間 6,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 247 ms
10,084 KB
testcase_16 AC 171 ms
9,244 KB
testcase_17 AC 326 ms
9,108 KB
testcase_18 AC 401 ms
8,824 KB
testcase_19 AC 284 ms
7,040 KB
testcase_20 AC 239 ms
6,684 KB
testcase_21 AC 483 ms
8,444 KB
testcase_22 AC 219 ms
6,528 KB
testcase_23 AC 312 ms
7,084 KB
testcase_24 AC 141 ms
6,780 KB
testcase_25 AC 179 ms
5,632 KB
testcase_26 AC 363 ms
7,624 KB
testcase_27 AC 441 ms
8,264 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 4 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 4 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<queue>
#include<vector>
using namespace std;
struct edge{
	int to, a, b;
};
int main(){
	int n,m;
	long long x;
	cin>>n>>m>>x;

	vector<vector<edge>> G(n);
	
	for(int i=0;i<m;++i){
		int 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});
	}
	
	long long l=-1,r=1e9+5;
	
	priority_queue<pair<long long,int>, vector<pair<long long,int>>, greater<pair<long long, int>>> que;
	while(r-l>1){
		long long m=(l+r)/2;

		vector<long long> dist(n, 1e18+5);
		dist[0]=0;
		que.push({0,0});

		while(!que.empty()){
			auto [d,v]=que.top();
			que.pop();
			if(dist[v]!=d)continue;
			for(const auto&[to, a, b]:G[v]){
				if(b<m)continue;
				if(dist[to]>d+a){
					dist[to]=d+a;
					que.push({d+a,to});
				}
			}
		}
		
		if(dist[n-1]<=x){
			l=m;
		}else{
			r=m;
		}
	}
	cout<<l<<endl;
	return 0;
}
0