結果
問題 | No.1190 Points |
ユーザー | AndrewK |
提出日時 | 2020-08-22 11:32:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,566 bytes |
コンパイル時間 | 1,705 ms |
コンパイル使用メモリ | 180,408 KB |
実行使用メモリ | 27,008 KB |
最終ジャッジ日時 | 2024-10-15 06:55:59 |
合計ジャッジ時間 | 7,461 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int N, M, P, S, G, u[100001], v[100001]; int kyo_s[100001][2], kyo_g[100001][2]; constexpr int inf = 1000000000; set<pair<int, int>> st; queue<pair<int, int>> q; vector<int> edge[1000001]; vector<int> ans; int main() { std::ifstream in("4671-testcase/test_in/02_tree_02.txt"); std::cin.rdbuf(in.rdbuf()); cin >> N >> M >> P; cin >> S >> G; assert(2 <= N && N <= 100000); long long lbig = min((long long)N * ((long long)N - 1ll) / 2ll, 100000ll); int big = lbig; assert(1 <= M && M <= big); assert(1 <= P && P <= 1000000000); assert(S != G); for (int i = 1; i <= M; i++) { cin >> u[i] >> v[i]; assert(u[i] != v[i]); assert(st.count(pair<int, int>(u[i], v[i])) == 0); st.insert(pair<int, int>(u[i], v[i])); st.insert(pair<int, int>(v[i], u[i])); edge[u[i]].push_back(v[i]); edge[v[i]].push_back(u[i]); } for (int i = 1; i <= N; i++) { kyo_s[i][0] = inf; kyo_s[i][1] = inf; kyo_g[i][0] = inf; kyo_g[i][1] = inf; } kyo_s[S][0] = 0; q.push(make_pair(0, S)); while (q.size()) { int cnt = q.front().first; int x = q.front().second; q.pop(); if (kyo_s[x][cnt % 2] < cnt) continue; cnt++; for (auto &i : edge[x]) { if (kyo_s[i][cnt % 2] > cnt) { kyo_s[i][cnt % 2] = cnt; q.push(make_pair(cnt, i)); } } } kyo_g[G][0] = 0; q.push(make_pair(0, G)); while (q.size()) { int cnt = q.front().first; int x = q.front().second; q.pop(); if (kyo_g[x][cnt % 2] < cnt) continue; cnt++; for (auto &i : edge[x]) { if (kyo_g[i][cnt % 2] > cnt) { kyo_g[i][cnt % 2] = cnt; q.push(make_pair(cnt, i)); } } } for (int i = 1; i <= N; i++) { if (P % 2) { int odd = min(kyo_s[i][0] + kyo_g[i][1], kyo_s[i][1] + kyo_g[i][0]); if (odd <= P) { ans.push_back(i); } } else { int even = min(kyo_s[i][0] + kyo_g[i][0], kyo_s[i][1] + kyo_g[i][1]); if (even <= P) { ans.push_back(i); } } } if (ans.size() == 0) { cout << -1 << endl; return 0; } cout << ans.size() << endl; for (int i = 0; i < ans.size(); i++) { cout << ans[i] << endl; } return 0; }