結果
問題 | No.2914 正閉路検出 |
ユーザー | n0ma_ru |
提出日時 | 2024-10-05 19:15:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,072 bytes |
コンパイル時間 | 2,408 ms |
コンパイル使用メモリ | 224,324 KB |
実行使用メモリ | 13,248 KB |
最終ジャッジ日時 | 2024-10-05 19:15:30 |
合計ジャッジ時間 | 13,493 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 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 | 21 ms
6,820 KB |
testcase_20 | AC | 42 ms
6,816 KB |
testcase_21 | AC | 15 ms
6,816 KB |
testcase_22 | AC | 54 ms
6,816 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 65 ms
6,820 KB |
testcase_28 | AC | 73 ms
6,816 KB |
testcase_29 | AC | 93 ms
11,776 KB |
testcase_30 | AC | 14 ms
7,808 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 89 ms
11,776 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 87 ms
11,764 KB |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define ALL(v) v.begin(),v.end() #define dbg(x) cerr << #x << ": " << (x) << endl; int n,m; vector<array<int,4>> e; struct WUF { WUF(int n) { par.resize(n); iota(par.begin(), par.end(), 0); rank.assign(n, 1); w.resize(n, 0); } // 根ノード int root(int x) { if (par[x] == x) return x; int rx = root(par[x]); w[x] += w[par[x]]; return par[x] = rx; } // weight(y) = weight(x) + dwとなるように結合 bool unite(int x, int y, ll dw) { dw += weight(x); dw -= weight(y); x = root(x); y = root(y); if (x == y) return false; if (rank[x] < rank[y]) swap(x,y), dw = -dw; if (rank[x] == rank[y]) ++rank[x]; par[y] = x; w[y] = dw; return true; } // 同じ集合に所属するか bool same(int x, int y) { return root(x) == root(y); } // 親ノードを0とするときの重み long long weight(int x) { root(x); return w[x]; } // 頂点xと頂点yの重みの差 // 制約:xとyが連結 long long diff(int x, int y) { return weight(y) - weight(x); } vector<vector<int>> groups() { vector<vector<int>> gr(par.size()); for (int v = 0; v < par.size(); ++v) { gr[root(v)].push_back(v); } vector<vector<int>> res; for (int v = 0; v < (int)par.size(); ++v) { if (gr[v].size()) res.push_back(gr[v]); } return res; } vector<int> par; vector<int> rank; vector<ll> w; }; int main() { cin >> n >> m; e.resize(m); for (int i = 0; i < m; ++i) { auto& [u,v,w,id] = e[i]; cin >> u >> v >> w; --u; --v; id = i; } vector<vector<pair<int,int>>> g(n); WUF uf(n); for (auto&& [u,v,w,i] : e) { // check; // for (int j = 0; j < n; ++j) { // cerr << uf.weight(j) << " \n"[j==n-1]; // } if (uf.same(u,v)) { if (uf.diff(u,v) == w) { /// ok } else { // bfs queue<int> q; vector<pair<int,int>> pre(n, {-1,-1}); q.push(u); pre[u] = {-2, -2}; while (q.size()) { int pos = q.front(); q.pop(); for (auto [to,id] : g[pos]) { if (pre[to].first == -1) { pre[to].first = pos; pre[to].second = id; q.push(to); } } } // reconstruct vector<int> path; int now = v; while (pre[now].second != -2) { path.push_back(pre[now].second); now = pre[now].first; } path.push_back(i); // plus, minus now = u; ll sum = 0; for (int ei : path) { auto&& [u,v,w,id] = e[ei]; if (now == u) { sum += w; now = v; } else { sum -= w; now = u; } } int start = v; if (sum < 0) { reverse(ALL(path)); start = u; } // out cout << start+1 << '\n'; cout << path.size() << '\n'; for (int j = 0; j < path.size(); ++j) { cout << path[j]+1 << " \n"[j==path.size()-1]; } return 0; } } else { uf.unite(u, v, w); g[u].emplace_back(v, i); g[v].emplace_back(u, i); } } cout << "-1\n"; }