結果
問題 | No.2914 正閉路検出 |
ユーザー | tassei903 |
提出日時 | 2024-10-04 22:02:55 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,911 bytes |
コンパイル時間 | 3,254 ms |
コンパイル使用メモリ | 126,696 KB |
実行使用メモリ | 814,708 KB |
最終ジャッジ日時 | 2024-10-04 22:03:06 |
合計ジャッジ時間 | 9,304 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 142 ms
137,560 KB |
testcase_20 | MLE | - |
testcase_21 | AC | 60 ms
71,856 KB |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <tuple> #include <algorithm> using namespace std; #define int long long struct Edge { int to, idx, weight; }; tuple<int, int, int, vector<int>, vector<int>> find_cycle2(int N, int M, vector<vector<Edge>>& G) { vector<int> vis(N, 0), used(M, 0), par_v(N, -1), par_e(N, -1), potential(N, 0); for (int s = 0; s < N; ++s) { if (vis[s]) continue; vector<tuple<int, int, int, int>> stack = {{s, -1, -1, 0}}; while (!stack.empty()) { auto [v, p, e, pot] = stack.back(); stack.pop_back(); if (e != -1 && used[e]) continue; if (vis[v] && pot != potential[v]) { par_v[v] = p; if (e != -1) par_e[v] = e; return {v, p, e, par_v, par_e}; } vis[v] = 1; potential[v] = pot; if (e != -1) { par_e[v] = e; used[e] = 1; } par_v[v] = p; for (const auto& [a, ne, w] : G[v]) { if (used[ne]) continue; stack.emplace_back(a, v, ne, pot + w); } } } return {-1, -1, -1, par_v, par_e}; } pair<vector<int>, vector<int>> cycle_detection2(int N, int M, vector<vector<Edge>>& G) { auto [v, p, e, par_v, par_e] = find_cycle2(N, M, G); if (p == -1) { return {{}, {}}; } else { vector<int> cycle_v = {p}; vector<int> cycle_e = {e}; while (v != p) { e = par_e[p]; p = par_v[p]; cycle_v.push_back(p); cycle_e.push_back(e); } reverse(cycle_v.begin(), cycle_v.end()); reverse(cycle_e.begin(), cycle_e.end()); return {cycle_v, cycle_e}; } } int32_t main() { int n, m; cin >> n >> m; vector<vector<Edge>> g(n); vector<tuple<int, int, int>> E; for (int i = 0; i < m; ++i) { int a, b, w; cin >> a >> b >> w; --a; --b; g[a].push_back({b, i, w}); g[b].push_back({a, i, -w}); E.emplace_back(a, b, w); } auto [cycle_v, cycle_e] = cycle_detection2(n, m, g); if (cycle_v.empty()) { cout << -1 << endl; } else { cout << cycle_v.size() << endl; int ans = 0, c = 0; for (int i : cycle_e) { if (get<0>(E[i]) == c) { ans += get<2>(E[i]); c = get<1>(E[i]); } else { ans -= get<2>(E[i]); c = get<0>(E[i]); } } if (ans > 0) { cout << cycle_v[0] + 1 << endl; for (int i : cycle_e) cout << i + 1 << " "; } else { cout << cycle_v[0] + 1 << endl; for (auto it = cycle_e.rbegin(); it != cycle_e.rend(); ++it) cout << *it + 1 << " "; } cout << endl; } return 0; }