結果
問題 | No.1190 Points |
ユーザー | achapi |
提出日時 | 2023-04-23 10:43:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,648 bytes |
コンパイル時間 | 2,422 ms |
コンパイル使用メモリ | 215,600 KB |
実行使用メモリ | 29,440 KB |
最終ジャッジ日時 | 2024-11-07 18:34:08 |
合計ジャッジ時間 | 8,395 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 194 ms
11,136 KB |
testcase_04 | AC | 115 ms
8,320 KB |
testcase_05 | AC | 226 ms
12,160 KB |
testcase_06 | AC | 119 ms
9,216 KB |
testcase_07 | AC | 301 ms
14,720 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 324 ms
29,440 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 198 ms
13,440 KB |
testcase_14 | AC | 22 ms
6,528 KB |
testcase_15 | AC | 348 ms
19,328 KB |
testcase_16 | AC | 18 ms
5,248 KB |
testcase_17 | AC | 313 ms
17,920 KB |
testcase_18 | WA | - |
testcase_19 | AC | 16 ms
7,296 KB |
testcase_20 | AC | 174 ms
12,032 KB |
testcase_21 | AC | 37 ms
6,784 KB |
testcase_22 | AC | 39 ms
8,064 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 121 ms
13,312 KB |
testcase_26 | AC | 76 ms
9,216 KB |
testcase_27 | AC | 116 ms
13,312 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using Graph = vector<vector<int>>; set<int> ans; set<int> s; set<int> D; bool f[101010]; void dfs(Graph &g, int v){ if (s.find(v) != s.end()){ for (int i : D){ ans.insert(i); } D.clear(); } for (int i : g[v]){ if (!f[i]){ f[i] = true; D.insert(i); dfs(g, i); D.erase(i); } } } int main() { int n, m, p; cin >> n >> m >> p; int S, G; cin >> S >> G; S--; G--; Graph g(n); for (int i = 0; i < m; i++){ int u, v; cin >> u >> v; u--; v--; g[u].push_back(v); g[v].push_back(u); } vector<int> d(n, -1); d[S] = 0; queue<int> q; q.push(S); while (!q.empty()){ int v = q.front(); q.pop(); for (int i : g[v]){ if (d[i] == -1){ d[i] = d[v] + 1; q.push(i); } } } vector<int> d2(n, -1); d2[G] = 0; queue<int> q2; q2.push(G); while (!q2.empty()){ int v = q2.front(); q2.pop(); for (int i : g[v]){ if (d2[i] == -1){ d2[i] = d2[v] + 1; q2.push(i); } } } for (int i = 0; i < n; i++){ if (d[i] == -1 or d2[i] == -1){ continue; } int c = p - d[G] - (d[i] + d2[i]); if (c >= 0 and c % 2 == 0){ s.insert(i); ans.insert(i); } } for (int i = 0; i < n; i++){ if (d[i] == -1 or d2[i] == -1){ continue; } int c = p - d[S] - (d[i] + d2[i]); if (c >= 0 and c % 2 == 0){ s.insert(i); ans.insert(i); } } s.erase(S); s.erase(G); D.insert(S); f[S] = true; dfs(g, S); D.clear(); D.insert(G); memset(f, 0, sizeof(f)); f[G] = true; dfs(g, G); if (ans.empty()){ cout << -1 << endl; return 0; } cout << ans.size() << endl; for (int i : ans){ cout << i + 1 << endl; } }