結果
問題 | No.2914 正閉路検出 |
ユーザー | Today03 |
提出日時 | 2024-10-08 02:21:24 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,938 bytes |
コンパイル時間 | 5,883 ms |
コンパイル使用メモリ | 266,016 KB |
実行使用メモリ | 816,640 KB |
最終ジャッジ日時 | 2024-10-08 02:21:40 |
合計ジャッジ時間 | 11,346 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 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,816 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 | 42 ms
7,424 KB |
testcase_20 | AC | 94 ms
12,416 KB |
testcase_21 | AC | 25 ms
6,820 KB |
testcase_22 | AC | 121 ms
14,336 KB |
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 <bits/stdc++.h> using namespace std; using ll = long long; const int INF = 1e9 + 10; const ll INFL = 4e18; template <typename Group, auto op, auto e, auto inv> struct DsuPotentialized { DsuPotentialized() = default; DsuPotentialized(int n) { par = vector<int>(n); sz = vector<int>(n); diff_weight = vector<Group>(n); for (int i = 0; i < n; i++) { par[i] = i; sz[i] = 1; diff_weight[i] = e(); } } int find(int x) { if (par[x] == x) return x; int root = find(par[x]); diff_weight[x] = op(diff_weight[x], diff_weight[par[x]]); return par[x] = root; } bool unite(int x, int y, Group w) { w = op(w, diff_weight[x]); w = op(inv(diff_weight[y]), w); x = find(x); y = find(y); if (x == y) return false; if (sz[x] < sz[y]) { swap(x, y); w = inv(w); } par[y] = x; sz[x] += sz[y]; diff_weight[y] = w; return true; } bool same(int x, int y) { return find(x) == find(y); } Group diff(int x, int y) { return op(diff_weight[y], inv(diff_weight[x])); } int size(int x) { return sz[find(x)]; } private: vector<int> par, sz; vector<Group> diff_weight; }; ll op(ll a, ll b) { return a + b; } ll e() { return 0; } ll inv(ll a) { return -a; } int main() { int N, M; cin >> N >> M; DsuPotentialized<ll, op, e, inv> dsu(N); vector<vector<int>> G(N); map<pair<int, int>, int> edgeid; for (int i = 0; i < M; i++) { int u, v, w; cin >> u >> v >> w; u--; v--; edgeid[{u, v}] = i; edgeid[{v, u}] = i; if (dsu.same(u, v)) { if (dsu.diff(u, v) != w) { vector<int> path; auto dfs = [&](auto&& dfs, int now, int pre) -> bool { if (now == v) { path.push_back(now); return true; } for (int nxt : G[now]) { if (nxt == pre) continue; if (dfs(dfs, nxt, now)) { path.push_back(now); return true; } } return false; }; dfs(dfs, u, -1); path.push_back(u); if (dsu.diff(u, v) < w) ranges::reverse(path); cout << ssize(path) - 1 << endl; cout << u + 1 << endl; for (int i = 0; i < ssize(path) - 1; i++) { cout << edgeid[{path[i], path[i + 1]}] + 1 << ' '; } cout << endl; return 0; } } dsu.unite(u, v, w); G[u].push_back(v); G[v].push_back(u); } cout << -1 << endl; }