結果

問題 No.2805 Go to School
ユーザー shobonvipshobonvip
提出日時 2024-07-12 21:42:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 2,298 bytes
コンパイル時間 4,738 ms
コンパイル使用メモリ 273,604 KB
実行使用メモリ 24,240 KB
最終ジャッジ日時 2024-07-16 01:38:49
合計ジャッジ時間 11,850 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 178 ms
16,748 KB
testcase_05 AC 234 ms
13,968 KB
testcase_06 AC 124 ms
9,232 KB
testcase_07 AC 115 ms
9,140 KB
testcase_08 AC 205 ms
14,436 KB
testcase_09 AC 122 ms
9,284 KB
testcase_10 AC 121 ms
9,088 KB
testcase_11 AC 343 ms
20,672 KB
testcase_12 AC 226 ms
14,148 KB
testcase_13 AC 314 ms
18,040 KB
testcase_14 AC 46 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 171 ms
11,252 KB
testcase_19 AC 112 ms
8,704 KB
testcase_20 AC 276 ms
15,456 KB
testcase_21 AC 352 ms
19,904 KB
testcase_22 AC 160 ms
10,624 KB
testcase_23 AC 254 ms
13,932 KB
testcase_24 AC 254 ms
13,920 KB
testcase_25 AC 70 ms
8,520 KB
testcase_26 AC 257 ms
24,240 KB
testcase_27 AC 173 ms
16,188 KB
testcase_28 AC 15 ms
6,944 KB
testcase_29 AC 27 ms
7,552 KB
testcase_30 AC 98 ms
12,160 KB
testcase_31 AC 136 ms
10,368 KB
testcase_32 AC 245 ms
18,084 KB
testcase_33 AC 288 ms
18,984 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 120 ms
8,832 KB
testcase_37 AC 142 ms
10,112 KB
testcase_38 AC 223 ms
15,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	int n, m, l; cin >> n >> m >> l;
	ll s, e; cin >> s >> e;
	vector<bool> is_toilet(n);
	vector ikeru(n, vector<pair<int,ll>>(0));
	rep(i,0,m){
		int a, b;
		cin >> a >> b;
		a--; b--;
		ll t; cin >> t;
		ikeru[a].push_back(pair(b, t));
		ikeru[b].push_back(pair(a, t));
	}
	rep(i,0,l){
		int x; cin >> x;
		x--; 
		is_toilet[x] = 1;
	}

	vector<ll> d2(n, 1e18);
	priority_queue<pair<ll,int>> pq2;

	{
		priority_queue<pair<ll,int>> pq;
		vector<ll> d(n, 1e18);
		d[0] = 0;
		pq.push(pair(0, 0));
		while(!pq.empty()){
			auto [tmp, i] = pq.top();
			pq.pop();
			tmp = -tmp;
			if (tmp > d[i]) continue;
			for (auto [j, c]: ikeru[i]){
				if (chmin(d[j], c+tmp)){
					pq.push(pair(-d[j], j));
				}
			}
		}

		if (d[n-1] >= 1e17){
			cout << -1 << '\n';
			return 0;
		}

		rep(i,0,n){
			if(is_toilet[i]){
				if (d[i] < s+e){
					d2[i] = max(d[i], s) + 1;
					pq2.push(pair(-d2[i], i));
				}
			}
		}
	}

	{
		while(!pq2.empty()){
			auto [tmp, i] = pq2.top();
			pq2.pop();
			tmp = -tmp;
			if (tmp > d2[i]) continue;
			for (auto [j, c]: ikeru[i]){
				if (chmin(d2[j], c+tmp)){
					pq2.push(pair(-d2[j], j));
				}
			}
		}

		if (d2[n-1] >= 1e17){
			cout << -1 << '\n';
			return 0;
		}
		cout << d2[n-1] << endl;
		return 0;
	}

}

0