結果
問題 | No.1190 Points |
ユーザー | outline |
提出日時 | 2020-12-27 01:03:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,211 bytes |
コンパイル時間 | 1,618 ms |
コンパイル使用メモリ | 143,068 KB |
実行使用メモリ | 9,984 KB |
最終ジャッジ日時 | 2024-09-25 04:54:56 |
合計ジャッジ時間 | 4,740 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 37 ms
8,064 KB |
testcase_04 | AC | 30 ms
7,424 KB |
testcase_05 | AC | 30 ms
7,296 KB |
testcase_06 | AC | 42 ms
9,088 KB |
testcase_07 | AC | 49 ms
9,856 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 12 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | AC | 8 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 9 ms
6,940 KB |
testcase_20 | WA | - |
testcase_21 | AC | 15 ms
6,940 KB |
testcase_22 | AC | 21 ms
7,808 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 42 ms
9,216 KB |
testcase_26 | AC | 39 ms
9,084 KB |
testcase_27 | AC | 42 ms
9,216 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); } vector<int> dist(n, INF); queue<int> que; dist[s] = 0; que.emplace(s); while(!que.empty()){ int from = que.front(); que.pop(); for(int to : graph[from]){ if(chmin(dist[to], dist[from] + 1)){ que.emplace(to); } } } vector<int> dist2(n, INF); dist2[g] = 0; que.emplace(g); while(!que.empty()){ int from = que.front(); que.pop(); for(int to : graph[from]){ if(chmin(dist2[to], dist2[from] + 1)){ que.emplace(to); } } } vector<int> ans; for(int v = 0; v < n; ++v){ if(dist[v] + dist2[v] <= p && (p - dist[v] - dist2[v]) % 2 == 0){ ans.emplace_back(v); } } if(ans.size() == 0) cout << -1 << '\n'; else{ cout << ans.size() << '\n'; for(int v : ans) cout << v + 1 << '\n'; } return 0; }