結果
問題 | No.1190 Points |
ユーザー | outline |
提出日時 | 2020-12-27 02:29:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 187 ms / 2,000 ms |
コード長 | 2,932 bytes |
コンパイル時間 | 1,791 ms |
コンパイル使用メモリ | 150,216 KB |
実行使用メモリ | 24,192 KB |
最終ジャッジ日時 | 2024-09-25 06:22:30 |
合計ジャッジ時間 | 6,405 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 75 ms
16,640 KB |
testcase_04 | AC | 55 ms
14,336 KB |
testcase_05 | AC | 64 ms
15,360 KB |
testcase_06 | AC | 87 ms
18,432 KB |
testcase_07 | AC | 115 ms
21,932 KB |
testcase_08 | AC | 182 ms
24,192 KB |
testcase_09 | AC | 137 ms
21,760 KB |
testcase_10 | AC | 187 ms
24,124 KB |
testcase_11 | AC | 92 ms
16,512 KB |
testcase_12 | AC | 139 ms
22,784 KB |
testcase_13 | AC | 95 ms
13,952 KB |
testcase_14 | AC | 25 ms
13,312 KB |
testcase_15 | AC | 181 ms
22,400 KB |
testcase_16 | AC | 13 ms
6,944 KB |
testcase_17 | AC | 161 ms
21,376 KB |
testcase_18 | AC | 51 ms
8,320 KB |
testcase_19 | AC | 25 ms
16,636 KB |
testcase_20 | AC | 78 ms
11,392 KB |
testcase_21 | AC | 28 ms
10,880 KB |
testcase_22 | AC | 39 ms
17,280 KB |
testcase_23 | AC | 173 ms
23,008 KB |
testcase_24 | AC | 186 ms
23,040 KB |
testcase_25 | AC | 88 ms
19,448 KB |
testcase_26 | AC | 60 ms
19,328 KB |
testcase_27 | AC | 87 ms
19,456 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> #include <unordered_set> using namespace std; using ll = long long; using P = pair<int, int>; constexpr int INF = 1001001001; // constexpr int mod = 1000000007; constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n, m, p, s, g; cin >> n >> m >> p >> s >> g; --s, --g; vector<vector<int>> graph(n); for(int i = 0; i < m; ++i){ int u, v; cin >> u >> v; --u, --v; graph[u].emplace_back(v); graph[v].emplace_back(u); } // dist[vertex][parity] auto bfs = [&](int root) -> vector<vector<int>> { vector<vector<int>> dist(n, vector<int>(2, INF)); queue<P> que; dist[root][0] = 0; que.emplace(root, 0); while(!que.empty()){ auto [from, parity] = que.front(); que.pop(); for(int to : graph[from]){ if(chmin(dist[to][parity ^ 1], dist[from][parity] + 1)){ que.emplace(to, parity ^ 1); } } } return dist; }; auto dists = bfs(s); auto distg = bfs(g); set<int> ans; // s -> v -> g for(int v = 0; v < n; ++v){ for(int i = 0; i < 2; ++i){ for(int j = 0; j < 2; ++j){ if((i ^ j) != p % 2) continue; int d = dists[v][i] + distg[v][j]; if(d <= p && (p - d) % 2 == 0){ ans.emplace(v); } } } } // s -> g -> v -> g for(int i = 0; i < 2; ++i){ if(dists[g][i] > p) continue; int q = p - dists[g][i]; for(int v = 0; v < n; ++v){ for(int j = 0; j < 2; ++j){ for(int k = 0; k < 2; ++k){ if((j ^ k) != q % 2) continue; int d = distg[v][j] + distg[v][k]; if(d <= q && (q - d) % 2 == 0){ ans.emplace(v); } } } } } if(ans.size() == 0) cout << -1 << '\n'; else{ cout << ans.size() << '\n'; for(int v : ans) cout << v + 1 << '\n'; } return 0; }