結果
問題 | No.1190 Points |
ユーザー | cn_449 |
提出日時 | 2020-08-22 14:13:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 431 ms / 2,000 ms |
コード長 | 2,465 bytes |
コンパイル時間 | 1,799 ms |
コンパイル使用メモリ | 154,164 KB |
実行使用メモリ | 57,880 KB |
最終ジャッジ日時 | 2024-10-15 08:28:24 |
合計ジャッジ時間 | 9,839 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 247 ms
42,708 KB |
testcase_04 | AC | 217 ms
38,744 KB |
testcase_05 | AC | 185 ms
34,560 KB |
testcase_06 | AC | 328 ms
54,032 KB |
testcase_07 | AC | 349 ms
56,708 KB |
testcase_08 | AC | 284 ms
56,888 KB |
testcase_09 | AC | 318 ms
53,164 KB |
testcase_10 | AC | 292 ms
56,604 KB |
testcase_11 | AC | 227 ms
40,420 KB |
testcase_12 | AC | 314 ms
56,140 KB |
testcase_13 | AC | 218 ms
34,508 KB |
testcase_14 | AC | 98 ms
32,716 KB |
testcase_15 | AC | 425 ms
56,244 KB |
testcase_16 | AC | 41 ms
13,204 KB |
testcase_17 | AC | 397 ms
53,260 KB |
testcase_18 | AC | 131 ms
23,932 KB |
testcase_19 | AC | 104 ms
40,016 KB |
testcase_20 | AC | 194 ms
30,340 KB |
testcase_21 | AC | 113 ms
27,164 KB |
testcase_22 | AC | 161 ms
45,436 KB |
testcase_23 | AC | 431 ms
57,880 KB |
testcase_24 | AC | 430 ms
57,880 KB |
testcase_25 | AC | 354 ms
57,708 KB |
testcase_26 | AC | 260 ms
57,160 KB |
testcase_27 | AC | 352 ms
57,788 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <string> #include <queue> #include <stack> #include <set> #include <map> #include <iomanip> #include <utility> #include <tuple> #include <functional> #include <bitset> #include <cassert> #include <complex> #include <stdio.h> #include <time.h> #include <numeric> #include <random> #include <unordered_map> #include <unordered_set> #define all(a) a.begin(),a.end() #define rep(i, n) for (ll i = 0; i < (n); i++) #define pb push_back #define debug(x) cerr << __LINE__ << ' ' << #x << ':' << x << '\n' #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef pair<ll, ll> P; typedef complex<ld> com; constexpr int inf = 1000000010; constexpr ll INF = 1000000000000000010; constexpr ld eps = 1e-12; constexpr ld pi = 3.141592653589793238; template<class T, class U> inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; } template<class T, class U> inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; } vector<vector<ll>> bfs(int s, vector<vector<vector<P>>> graph) { int n = graph.size(); queue<P> que; que.push({ s,0 }); vector<vector<ll>> res(n, { inf,inf }); vector<vector<bool>> vis(n, vector<bool>(2)); res[s][0] = 0; vis[s][0] = 1; while (!que.empty()) { P p = que.front(); que.pop(); ll pf = p.first, ps = p.second; for (P nxt : graph[pf][ps]) { ll nf = nxt.first; ll ns = nxt.second; if (!vis[nf][ns]) { vis[nf][ns] = 1; res[nf][ns] = res[pf][ps] + 1; que.push({ nf,ns }); } } } return res; } int main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); int n, m, p; cin >> n >> m >> p; int s, g; cin >> s >> g; s--; g--; vector<vector<vector<P>>> graph(n, vector<vector<P>>(2, vector<P>())); rep(i, m) { int u, v; cin >> u >> v; u--; v--; rep(j, 2){ graph[u][j].pb({ v,j ^ 1 }); graph[v][j].pb({ u,j ^ 1 }); } } vector<vector<ll>> x = bfs(s, graph); vector<vector<ll>> y = bfs(g, graph); int check = p & 1; vector<int> ans; rep(i, n) { int val1 = x[i][0] + y[i][0 ^ check]; int val2 = x[i][1] + y[i][1 ^ check]; if (val1 <= p || val2 <= p) ans.pb(i); } if (ans.size() == 0) { cout << "-1\n"; return 0; } cout << ans.size() << '\n'; for (int i : ans) cout << i + 1 << '\n'; }