結果

問題 No.2805 Go to School
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-07-12 22:15:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 1,088 bytes
コンパイル時間 2,367 ms
コンパイル使用メモリ 210,532 KB
実行使用メモリ 26,100 KB
最終ジャッジ日時 2024-07-16 01:40:25
合計ジャッジ時間 10,708 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,160 KB
testcase_01 AC 4 ms
8,148 KB
testcase_02 AC 5 ms
7,972 KB
testcase_03 AC 5 ms
8,080 KB
testcase_04 AC 186 ms
19,148 KB
testcase_05 AC 253 ms
18,108 KB
testcase_06 AC 132 ms
13,272 KB
testcase_07 AC 125 ms
13,672 KB
testcase_08 AC 223 ms
18,876 KB
testcase_09 AC 133 ms
13,376 KB
testcase_10 AC 132 ms
13,684 KB
testcase_11 AC 424 ms
21,332 KB
testcase_12 AC 283 ms
17,136 KB
testcase_13 AC 390 ms
20,448 KB
testcase_14 AC 55 ms
10,056 KB
testcase_15 AC 5 ms
8,248 KB
testcase_16 AC 4 ms
8,104 KB
testcase_17 AC 5 ms
8,120 KB
testcase_18 AC 189 ms
15,012 KB
testcase_19 AC 122 ms
12,480 KB
testcase_20 AC 297 ms
19,000 KB
testcase_21 AC 413 ms
20,068 KB
testcase_22 AC 177 ms
13,456 KB
testcase_23 AC 281 ms
17,108 KB
testcase_24 AC 280 ms
17,288 KB
testcase_25 AC 80 ms
12,188 KB
testcase_26 AC 286 ms
26,100 KB
testcase_27 AC 193 ms
16,244 KB
testcase_28 AC 17 ms
9,552 KB
testcase_29 AC 30 ms
10,128 KB
testcase_30 AC 99 ms
13,160 KB
testcase_31 AC 154 ms
13,616 KB
testcase_32 AC 250 ms
20,384 KB
testcase_33 AC 292 ms
20,684 KB
testcase_34 AC 6 ms
8,056 KB
testcase_35 AC 5 ms
8,156 KB
testcase_36 AC 152 ms
12,392 KB
testcase_37 AC 168 ms
12,844 KB
testcase_38 AC 347 ms
16,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll const inf = (ll)1e18;
using P = pair<ll, int>;
int main () {
	int N, M, L; ll S, E;
	cin >> N >> M >> L >> S >> E;
	std::vector<P> gr[200020];
	while (M--) {
		int a, b; ll c;
		cin >> a >> b >> c;
		gr[--a].emplace_back(c, --b);
		gr[b].emplace_back(c, a);
	}
	vector<ll> D1(N, inf), D2(N, inf);
	D1[0] = D2[N - 1] = 0;
	priority_queue<P, vector<P>, greater<P>> pque;
	
	pque.emplace(0, 0);
	while (!pque.empty()) {
		auto [l, u] = pque.top();
		pque.pop();
		if (l != D1[u]) continue;
		for (auto [c, v] : gr[u]) {
			if (D1[v] > l + c) {
				D1[v] = l + c;
				pque.emplace(l + c, v);
			}
		}
	}
	pque.emplace(0, N - 1);
	while (!pque.empty()) {
		auto [l, u] = pque.top();
		pque.pop();
		if (l != D2[u]) continue;
		for (auto [c, v] : gr[u]) {
			if (D2[v] > l + c) {
				D2[v] = l + c;
				pque.emplace(l + c, v);
			}
		}
	}
	ll ans = inf * 3;
	while (L--) {
		int t;
		cin >> t;
		t --;
		if (D1[t] < S + E) {
			ans = min(ans, max(D1[t], S) + 1 + D2[t]);
		}
	}
	cout << (ans >= inf ? -1ll : ans) << endl;
}
0