結果

問題 No.2805 Go to School
ユーザー anonymouslyanonymously
提出日時 2024-07-13 12:01:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,625 ms / 2,000 ms
コード長 2,213 bytes
コンパイル時間 2,598 ms
コンパイル使用メモリ 222,408 KB
実行使用メモリ 40,620 KB
最終ジャッジ日時 2024-07-16 01:42:12
合計ジャッジ時間 25,050 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 843 ms
27,608 KB
testcase_05 AC 320 ms
14,972 KB
testcase_06 AC 225 ms
10,496 KB
testcase_07 AC 158 ms
9,600 KB
testcase_08 AC 236 ms
14,720 KB
testcase_09 AC 235 ms
10,624 KB
testcase_10 AC 149 ms
8,960 KB
testcase_11 AC 1,421 ms
36,932 KB
testcase_12 AC 668 ms
20,392 KB
testcase_13 AC 891 ms
25,856 KB
testcase_14 AC 266 ms
9,600 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 347 ms
14,020 KB
testcase_19 AC 333 ms
12,288 KB
testcase_20 AC 541 ms
19,444 KB
testcase_21 AC 1,625 ms
40,620 KB
testcase_22 AC 630 ms
18,536 KB
testcase_23 AC 641 ms
19,840 KB
testcase_24 AC 611 ms
19,468 KB
testcase_25 AC 357 ms
13,120 KB
testcase_26 AC 1,155 ms
39,636 KB
testcase_27 AC 1,454 ms
37,000 KB
testcase_28 AC 567 ms
15,796 KB
testcase_29 AC 634 ms
17,444 KB
testcase_30 AC 1,042 ms
28,124 KB
testcase_31 AC 536 ms
16,512 KB
testcase_32 AC 902 ms
30,572 KB
testcase_33 AC 1,209 ms
33,328 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 3 ms
6,940 KB
testcase_36 AC 439 ms
14,080 KB
testcase_37 AC 676 ms
18,944 KB
testcase_38 AC 1,156 ms
31,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Dijkstra {
	int N;
	long long S;
	long long E;
	const vector<vector<pair<int, long long>>> &G;
	const vector<bool> &T;
	
	void print(const vector<vector<long long>>& A){
	    for(vector<long long> a:A){
	        cerr << "{"<< -a[0] << ", " << -a[1] <<"} ";
	    }
	    cerr << endl;
	}
	
public:
	Dijkstra(int N, long long S, long long E,
			const vector<vector<pair<int, long long>>> &G,
			const vector<bool> &T) :
			N(N), S(S), E(E), G(G), T(T) {
	}

	long long dijkstra() {
		vector<vector<long long>> dist(N, vector<long long>(2, -(1LL << 62)));
		vector<vector<bool>> visited(N, vector<bool>(2, false));
		priority_queue<pair<long long, pair<int, bool>>> Q;
		dist[0][false] = 0LL;
		Q.push( { dist[0][false], { 0, false } });
		while (!Q.empty()) {
			pair<long long, pair<int, bool>> q = Q.top();
			Q.pop();
			if (q.second.first == N - 1 && q.second.second) {
			    print(dist);
				return -dist[N - 1][true];
			}
			if (visited[q.second.first][q.second.second])
				continue;
			visited[q.second.first][q.second.second] = true;
			if (!q.second.second
					&& -dist[q.second.first][q.second.second] >= S + E)
				continue;
			if (!q.second.second && T[q.second.first]) {
				long long d = min(-S - 1, q.first - 1);
				if (d > dist[q.second.first][true]) {
					dist[q.second.first][true] = d;
					Q.push( { d, { q.second.first, true } });
				}
			}
			for (pair<int, long long> u : G[q.second.first]) {
				long long d = dist[q.second.first][q.second.second] - u.second;
				if (d > dist[u.first][q.second.second]) {
					dist[u.first][q.second.second] = d;
					Q.push( { d, { u.first, q.second.second } });
				}
			}
		}
		print(dist);
		return -1;
	}

	~Dijkstra() {
	}
};

int main() {
	int n, m, l;
	long long s, e;
	cin >> n >> m >> l >> s >> e;
	vector<vector<pair<int, long long>>> G(n);
	for (int i = 0; i < m; i++) {
		int a, b;
		long long t;
		cin >> a >> b >> t;
		a -= 1;
		b -= 1;
		G[a].push_back( { b, t });
		G[b].push_back( { a, t });
	}
	vector<bool> T(n, false);
	for (int i = 0; i < l; i++) {
		int t;
		cin >> t;
		T[--t] = true;
	}
	Dijkstra dijkstra(n, s, e, G, T);
	cout << dijkstra.dijkstra() << endl;
	return 0;
}
0