結果

問題 No.2914 正閉路検出
ユーザー n0ma_run0ma_ru
提出日時 2024-10-05 19:05:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,456 bytes
コンパイル時間 2,727 ms
コンパイル使用メモリ 225,500 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-10-05 19:05:50
合計ジャッジ時間 13,204 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 WA -
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 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,820 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 22 ms
6,816 KB
testcase_20 AC 46 ms
6,816 KB
testcase_21 AC 13 ms
6,820 KB
testcase_22 AC 52 ms
6,824 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 67 ms
6,820 KB
testcase_28 AC 80 ms
6,820 KB
testcase_29 AC 94 ms
11,728 KB
testcase_30 AC 13 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 91 ms
11,792 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 89 ms
11,776 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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[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);
                        }
                    }
                }
                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);
                // out
                cout << v+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";
}
0