結果

問題 No.1 道のショートカット
ユーザー めうめう🎒めうめう🎒
提出日時 2016-07-05 23:24:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,456 bytes
コンパイル時間 2,808 ms
コンパイル使用メモリ 80,112 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-27 21:57:24
合計ジャッジ時間 2,175 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 1 ms
4,380 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 2 ms
4,376 KB
testcase_31 AC 1 ms
4,380 KB
testcase_32 AC 1 ms
4,380 KB
testcase_33 AC 2 ms
4,376 KB
testcase_34 AC 2 ms
4,380 KB
testcase_35 AC 2 ms
4,376 KB
testcase_36 AC 2 ms
4,376 KB
testcase_37 AC 1 ms
4,380 KB
testcase_38 AC 1 ms
4,376 KB
testcase_39 AC 1 ms
4,376 KB
testcase_40 AC 1 ms
4,376 KB
testcase_41 AC 2 ms
4,376 KB
testcase_42 AC 2 ms
4,376 KB
testcase_43 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <math.h>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
using namespace std;

#define ll long long
#define INF (1 << 30)
#define INFLL (1LL << 60)

int n,c,v;
vector<pair<int,pair<int,int> > > edge[1501];

int djikstra(){
	priority_queue<pair<int, pair<int,int> > > que;
	que.push(make_pair(0, make_pair(c,0)));

	//bool used[51] = {};

	while(que.size()){
		pair<int,pair<int,int> > data = que.top();
		que.pop();
		int nowTime = -data.first;
		int nowCost = data.second.first;
		int now = data.second.second;

		if(now == n - 1){
			return nowTime;
		}
		// if(used[now]) continue;
		// used[now] = true;

		for(int i = 0;i < edge[now].size();i++){
			int toTime = edge[now][i].first;
			int to = edge[now][i].second.first;
			int toCost = edge[now][i].second.second;
			if(nowCost - toCost < 0) continue;
			que.push(make_pair(-(nowTime + toTime), make_pair(nowCost - toCost, to)));
		}
	}
	return -1;
}

int main() {
	cin >> n >> c >> v;
	int s[1501],t[1501],y[1501],m[1501];
	for(int i = 0;i < v;i++){
		cin >> s[i];
		s[i]--;
	}
	for(int i = 0;i < v;i++){
		cin >> t[i];
		t[i]--;
	}
	for(int i = 0;i < v;i++){
		cin >> y[i];
	}
	for(int i = 0;i < v;i++){
		cin >> m[i];
	}
	for(int i = 0;i < v;i++){
		edge[s[i]].push_back(make_pair(m[i], make_pair(t[i], y[i])));
	}

	cout << djikstra() << endl;
	return 0;
}
0