結果
問題 | No.1190 Points |
ユーザー | achapi |
提出日時 | 2023-04-23 11:31:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,185 bytes |
コンパイル時間 | 2,529 ms |
コンパイル使用メモリ | 211,108 KB |
実行使用メモリ | 22,272 KB |
最終ジャッジ日時 | 2024-11-07 19:12:57 |
合計ジャッジ時間 | 7,095 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 126 ms
9,856 KB |
testcase_04 | AC | 82 ms
8,320 KB |
testcase_05 | AC | 145 ms
9,856 KB |
testcase_06 | AC | 102 ms
9,856 KB |
testcase_07 | AC | 199 ms
12,928 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 154 ms
11,776 KB |
testcase_14 | AC | 26 ms
7,168 KB |
testcase_15 | AC | 260 ms
16,640 KB |
testcase_16 | AC | 16 ms
5,248 KB |
testcase_17 | AC | 232 ms
15,488 KB |
testcase_18 | AC | 98 ms
8,448 KB |
testcase_19 | AC | 19 ms
7,808 KB |
testcase_20 | AC | 137 ms
10,880 KB |
testcase_21 | AC | 33 ms
6,912 KB |
testcase_22 | AC | 46 ms
8,704 KB |
testcase_23 | AC | 267 ms
16,896 KB |
testcase_24 | AC | 254 ms
16,896 KB |
testcase_25 | AC | 106 ms
13,184 KB |
testcase_26 | AC | 90 ms
9,856 KB |
testcase_27 | AC | 108 ms
13,184 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using Graph = vector<vector<int>>; int d[2][101010]; int d2[2][101010]; void dfs(Graph &g, int c, int v){ c++; for (int i : g[v]){ if (d[c % 2][i] == -1){ d[c % 2][i] = c; dfs(g, c, i); } } } void dfs2(Graph &g, int c, int v){ c++; for (int i : g[v]){ if (d2[c % 2][i] == -1){ d2[c % 2][i] = c; dfs2(g, c, 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); } for (int i = 0; i < 2; i++){ for (int j = 0; j < n; j++){ d[i][j] = -1; d2[i][j] = -1; } } d[0][S] = 0; dfs(g, 0, S); d2[0][G] = 0; dfs2(g, 0, G); set<int> ans; for (int i = 0; i < n; i++){ for (int j = 0; j < 2; j++){ for (int k = 0; k < 2; k++){ if (d[j][i] == -1 or d2[k][i] == -1){ continue; } int c = p - d[j][i] - d2[k][i]; if (c >= 0 and c % 2 == 0){ ans.insert(i); } } } } if (ans.empty()){ cout << -1 << endl; return 0; } cout << ans.size() << endl; for (int i : ans){ cout << i + 1 << endl; } }