結果

問題 No.2805 Go to School
ユーザー silv723silv723
提出日時 2024-07-05 11:30:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 1,556 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 213,228 KB
実行使用メモリ 22,448 KB
最終ジャッジ日時 2024-07-16 01:36:32
合計ジャッジ時間 8,727 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 177 ms
17,280 KB
testcase_05 AC 210 ms
14,376 KB
testcase_06 AC 111 ms
9,688 KB
testcase_07 AC 107 ms
9,344 KB
testcase_08 AC 186 ms
14,464 KB
testcase_09 AC 112 ms
9,344 KB
testcase_10 AC 111 ms
9,088 KB
testcase_11 AC 318 ms
21,176 KB
testcase_12 AC 195 ms
14,552 KB
testcase_13 AC 277 ms
18,256 KB
testcase_14 AC 39 ms
6,272 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 157 ms
11,636 KB
testcase_19 AC 96 ms
8,832 KB
testcase_20 AC 236 ms
16,396 KB
testcase_21 AC 308 ms
21,192 KB
testcase_22 AC 129 ms
11,180 KB
testcase_23 AC 208 ms
15,328 KB
testcase_24 AC 205 ms
15,164 KB
testcase_25 AC 62 ms
8,644 KB
testcase_26 AC 248 ms
22,448 KB
testcase_27 AC 157 ms
17,024 KB
testcase_28 AC 12 ms
7,168 KB
testcase_29 AC 23 ms
8,064 KB
testcase_30 AC 85 ms
12,616 KB
testcase_31 AC 131 ms
10,752 KB
testcase_32 AC 224 ms
19,748 KB
testcase_33 AC 275 ms
19,472 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 103 ms
9,344 KB
testcase_37 AC 105 ms
10,496 KB
testcase_38 AC 197 ms
15,980 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:24:33: warning: narrowing conversion of 'b' from 'long long int' to 'int' [-Wnarrowing]
   24 |                 g[a].push_back({b, c});
      |                                 ^
main.cpp:25:33: warning: narrowing conversion of 'a' from 'long long int' to 'int' [-Wnarrowing]
   25 |                 g[b].push_back({a, c});
      |                                 ^

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
struct edge{
	int to;
	long long cost;
};
using graph = vector<vector<edge>>;
int main(){
	long long n, m, l, s, e;
	cin >> n >> m >> l >> s >> e;
	assert(2 <= n && n <= 200000);
	assert(1 <= m && m <= 200000);
	assert(1 <= l && l <= n);
	assert(1 <= s && s <= 1000000000);
	assert(1 <= e && e <= 1000000000);
	graph g(n);
	for(int i = 0; i < m; i++){
		long long a, b, c;
		cin >> a >> b >> c;
		assert(1 <= a && a <= n);
		assert(1 <= b && b <= n);
		assert(1 <= c && c <= 1000000000);
		a--, b--;
		g[a].push_back({b, c});
		g[b].push_back({a, c});
	}
	vector<int> t(n);
	for(int i = 0; i < l; i++){
		int x;
		cin >> x;
		assert(1 <= x && x <= n);
		x--;
		t[x] = 1;
	}
	vector<long long> d(2*n, 1e18);
	d[0] = 0;
	using p = pair<long long, int>;
	priority_queue<p, vector<p>, greater<p>> pq;
	pq.push({0, 0});
	while(!pq.empty()){
		p q = pq.top();
		pq.pop();
		if(d[q.second] != q.first) continue;
		if(q.second%2 == 0 && t[q.second/2] == 1){
			if(s <= q.first && q.first <= s+e-1){
				if(d[q.second+1] > q.first+1){
					d[q.second+1] = q.first+1;
					pq.push({q.first+1, q.second+1});
				}
			}else if(q.first < s){
				if(d[q.second+1] > s+1){
					d[q.second+1] = s+1;
					pq.push({s+1, q.second+1});
				}
			}
		}
		for(auto eg:g[q.second/2]){
			if(d[eg.to*2+q.second%2] > d[q.second] + eg.cost){
				d[eg.to*2+q.second%2] = d[q.second] + eg.cost;
				pq.push({d[q.second] + eg.cost, eg.to*2+q.second%2});
			}
		}
	}
	if(d[2*n-1] > 1e17) cout << -1 << '\n';
	else cout << d[2*n-1] << '\n';
}
0