結果

問題 No.1190 Points
ユーザー Example0911Example0911
提出日時 2020-08-24 18:32:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 1,373 bytes
コンパイル時間 1,863 ms
コンパイル使用メモリ 180,384 KB
実行使用メモリ 25,760 KB
最終ジャッジ日時 2024-11-06 10:33:05
合計ジャッジ時間 6,992 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 124 ms
19,576 KB
testcase_04 AC 83 ms
17,864 KB
testcase_05 AC 129 ms
16,104 KB
testcase_06 AC 112 ms
24,160 KB
testcase_07 AC 191 ms
25,396 KB
testcase_08 AC 223 ms
24,992 KB
testcase_09 AC 221 ms
23,168 KB
testcase_10 AC 223 ms
24,956 KB
testcase_11 AC 149 ms
18,096 KB
testcase_12 AC 210 ms
24,488 KB
testcase_13 AC 128 ms
15,736 KB
testcase_14 AC 36 ms
16,164 KB
testcase_15 AC 229 ms
24,964 KB
testcase_16 AC 16 ms
7,528 KB
testcase_17 AC 204 ms
23,872 KB
testcase_18 AC 75 ms
10,536 KB
testcase_19 AC 39 ms
19,676 KB
testcase_20 AC 110 ms
13,628 KB
testcase_21 AC 42 ms
13,272 KB
testcase_22 AC 59 ms
21,384 KB
testcase_23 AC 247 ms
25,656 KB
testcase_24 AC 251 ms
25,760 KB
testcase_25 AC 115 ms
25,756 KB
testcase_26 AC 87 ms
25,244 KB
testcase_27 AC 109 ms
25,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

// コンテスト中のみ
//#define int long long

#define ll long long
#define rep(i,n) for(int i = 0; i < (n); i++)
//#define P pair<ll,ll>
#define ld long double
ll INF = (1LL << 60);
int MOD = 1000000007;

ll N, M, P, S, G;

vector<vector<ll>> bfs(ll s, vector<vector<ll>>g) {
	vector<vector<ll>>dist(N, vector<ll>(2, INF));
	dist[s][0] = 0;
	queue<pair<ll, ll>>q;
	q.push({ s,0 });
	while (!q.empty()) {
		pair<ll, ll> p = q.front(); q.pop();
		for (auto nv : g[p.first]) {
			if (dist[nv][p.second ^ 1] == INF) {
				dist[nv][p.second ^ 1] = dist[p.first][p.second] + 1;
				q.push({ nv,p.second ^ 1 });
			}
		}
	}
	return dist;
}

signed main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin >> N >> M >> P >> S >> G; S--; G--;
	vector<vector<ll>>g(N);
	rep(i, M) {
		ll a, b; cin >> a >> b; a--; b--;
		g[a].push_back(b);
		g[b].push_back(a);
	}
	vector<vector<ll>>ds = bfs(S, g), dg = bfs(G, g);
	vector<ll>ans;
	rep(i, N) {
		ll even = min(ds[i][0] + dg[i][0], ds[i][1] + dg[i][1]);
		ll odd = min(ds[i][0] + dg[i][1], ds[i][1] + dg[i][0]);
		if (P % 2) {
			if (odd <= P) {
				ans.push_back(i);
			}
		}
		else {
			if (even <= P) {
				ans.push_back(i);
			}
		}
	}
	if (ans.empty()) { cout << -1 << endl; return 0; }
	cout << ans.size() << endl;
	for (auto x : ans)cout << x + 1 << endl;
	return 0;
}
0