結果

問題 No.2914 正閉路検出
ユーザー n0ma_run0ma_ru
提出日時 2024-10-05 19:54:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 4,041 bytes
コンパイル時間 2,626 ms
コンパイル使用メモリ 225,088 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-10-05 19:54:12
合計ジャッジ時間 8,895 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 22 ms
6,820 KB
testcase_20 AC 44 ms
6,816 KB
testcase_21 AC 12 ms
6,820 KB
testcase_22 AC 52 ms
6,820 KB
testcase_23 AC 38 ms
6,820 KB
testcase_24 AC 60 ms
6,820 KB
testcase_25 AC 6 ms
6,816 KB
testcase_26 AC 9 ms
6,816 KB
testcase_27 AC 66 ms
6,820 KB
testcase_28 AC 74 ms
6,816 KB
testcase_29 AC 103 ms
11,832 KB
testcase_30 AC 14 ms
7,808 KB
testcase_31 AC 68 ms
6,816 KB
testcase_32 AC 74 ms
6,820 KB
testcase_33 AC 14 ms
8,576 KB
testcase_34 AC 99 ms
12,668 KB
testcase_35 AC 103 ms
12,568 KB
testcase_36 AC 103 ms
12,672 KB
testcase_37 AC 102 ms
15,360 KB
testcase_38 AC 94 ms
12,800 KB
testcase_39 AC 98 ms
12,032 KB
testcase_40 AC 106 ms
14,080 KB
testcase_41 AC 103 ms
12,800 KB
testcase_42 AC 123 ms
14,208 KB
testcase_43 AC 111 ms
15,104 KB
testcase_44 AC 99 ms
12,416 KB
testcase_45 AC 109 ms
14,720 KB
testcase_46 AC 111 ms
14,592 KB
testcase_47 AC 110 ms
14,220 KB
testcase_48 AC 97 ms
12,800 KB
testcase_49 AC 130 ms
14,848 KB
testcase_50 AC 106 ms
14,336 KB
testcase_51 AC 87 ms
11,904 KB
testcase_52 AC 98 ms
12,544 KB
testcase_53 AC 89 ms
12,544 KB
testcase_54 AC 88 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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[x] = y;
        w[x] = 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(x) - weight(y);
    }

    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 = v;
                ll sum = 0;
                for (int ei : path) {
                    auto&& [a,b,w,id] = e[ei];
                    if (now == a) {
                        sum += w;
                        now = b;
                    }
                    else {
                        sum -= w;
                        now = a;
                    }
                }
                int start = v;
                if (sum < 0) {
                    reverse(ALL(path));
                }

                // out
                cout << path.size() << '\n';
                cout << start+1 << '\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";
}
0