結果

問題 No.2805 Go to School
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-07-12 22:13:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,084 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 212,068 KB
実行使用メモリ 23,196 KB
最終ジャッジ日時 2024-07-12 22:13:25
合計ジャッジ時間 8,989 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 4 ms
8,064 KB
testcase_04 AC 213 ms
18,080 KB
testcase_05 WA -
testcase_06 AC 107 ms
13,668 KB
testcase_07 AC 188 ms
18,816 KB
testcase_08 AC 112 ms
13,424 KB
testcase_09 AC 120 ms
13,568 KB
testcase_10 AC 379 ms
21,332 KB
testcase_11 AC 209 ms
17,136 KB
testcase_12 AC 320 ms
20,452 KB
testcase_13 AC 47 ms
9,984 KB
testcase_14 WA -
testcase_15 AC 4 ms
8,108 KB
testcase_16 AC 4 ms
8,064 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 246 ms
19,132 KB
testcase_20 WA -
testcase_21 AC 142 ms
13,512 KB
testcase_22 WA -
testcase_23 AC 248 ms
17,284 KB
testcase_24 AC 63 ms
12,064 KB
testcase_25 AC 236 ms
23,196 KB
testcase_26 AC 158 ms
16,368 KB
testcase_27 AC 16 ms
9,472 KB
testcase_28 AC 27 ms
10,112 KB
testcase_29 AC 89 ms
13,184 KB
testcase_30 AC 120 ms
13,696 KB
testcase_31 AC 240 ms
20,512 KB
testcase_32 WA -
testcase_33 AC 6 ms
8,192 KB
testcase_34 AC 6 ms
8,192 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 217 ms
16,640 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] < E) {
			ans = min(ans, max(D1[t], S) + 1 + D2[t]);
		}
	}
	cout << (ans >= inf ? -1ll : ans) << endl;
}
0