結果

問題 No.2805 Go to School
ユーザー cho435cho435
提出日時 2024-07-12 22:48:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 1,519 bytes
コンパイル時間 4,240 ms
コンパイル使用メモリ 269,000 KB
実行使用メモリ 22,216 KB
最終ジャッジ日時 2024-07-16 01:41:02
合計ジャッジ時間 8,632 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 89 ms
16,768 KB
testcase_05 AC 155 ms
17,444 KB
testcase_06 AC 73 ms
9,660 KB
testcase_07 AC 74 ms
10,972 KB
testcase_08 AC 140 ms
18,076 KB
testcase_09 AC 76 ms
10,736 KB
testcase_10 AC 81 ms
10,752 KB
testcase_11 AC 230 ms
20,716 KB
testcase_12 AC 139 ms
14,112 KB
testcase_13 AC 206 ms
18,948 KB
testcase_14 AC 23 ms
6,144 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 102 ms
12,684 KB
testcase_19 AC 58 ms
8,648 KB
testcase_20 AC 172 ms
16,300 KB
testcase_21 AC 174 ms
19,900 KB
testcase_22 AC 75 ms
10,880 KB
testcase_23 AC 136 ms
13,960 KB
testcase_24 AC 137 ms
15,040 KB
testcase_25 AC 33 ms
8,408 KB
testcase_26 AC 134 ms
22,216 KB
testcase_27 AC 66 ms
16,256 KB
testcase_28 AC 7 ms
6,784 KB
testcase_29 AC 11 ms
7,680 KB
testcase_30 AC 37 ms
12,224 KB
testcase_31 AC 61 ms
10,496 KB
testcase_32 AC 117 ms
19,392 KB
testcase_33 AC 155 ms
18,880 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 62 ms
9,344 KB
testcase_37 AC 60 ms
10,112 KB
testcase_38 AC 127 ms
15,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (ll i = s; i < (ll)(t); i++)

template<typename T>
bool chmin(T &x, T y) { return x > y ? (x = y, true) : false; }
template<typename T>
bool chmax(T &x, T y) { return x < y ? (x = y, true) : false; }

struct io_setup {
	io_setup() {
		ios::sync_with_stdio(false);
		std::cin.tie(nullptr);
		cout << fixed << setprecision(15);
	}
} io_setup;

using mint = atcoder::modint1000000007;

int main(){
	int n,m,l,s,e;
	cin>>n>>m>>l>>s>>e;
	vector<vector<pair<ll,ll>>> g(n);
	rep(i,0,m){
		int a,b,t;
		cin>>a>>b>>t;
		a--; b--;
		g.at(a).push_back({b,t});
		g.at(b).push_back({a,t});
	}
	vector<int> t(l);
	rep(i,0,l) cin>>t.at(i),t.at(i)--;
	vector<ll> dist1(n,1e18),dist2(n,1e18);
	priority_queue<pair<ll,ll>,vector<pair<ll,ll>>,greater<pair<ll,ll>>> pq;
	{
		pq.push({0,0});
		while(!pq.empty()){
			auto[cs,nw]=pq.top();
			pq.pop();
			if(dist1.at(nw)!=1e18) continue;
			dist1.at(nw)=cs;
			for(auto[nx,ad]:g.at(nw)){
				if(dist1.at(nx)!=1e18) continue;
				pq.push({cs+ad,nx});
			}
		}
	}
	{
		pq.push({0,n-1});
		while(!pq.empty()){
			auto[cs,nw]=pq.top();
			pq.pop();
			if(dist2.at(nw)!=1e18) continue;
			dist2.at(nw)=cs;
			for(auto[nx,ad]:g.at(nw)){
				if(dist2.at(nx)!=1e18) continue;
				pq.push({cs+ad,nx});
			}
		}
	}
	ll ans=1e18;
	rep(i,0,l){
		int d=t.at(i);
		if(dist1.at(d)<s+e){
			chmin(ans,max(dist1.at(d),(ll)s)+1+dist2.at(d));
		}
	}
	if(ans==1e18) ans=-1;
	cout<<ans<<endl;
}
0