結果

問題 No.2914 正閉路検出
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-10-05 10:15:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 4,976 bytes
コンパイル時間 3,102 ms
コンパイル使用メモリ 268,272 KB
実行使用メモリ 36,832 KB
最終ジャッジ日時 2024-10-05 10:16:03
合計ジャッジ時間 13,032 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 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,816 KB
testcase_12 AC 1 ms
6,816 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,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 22 ms
6,816 KB
testcase_20 AC 47 ms
7,680 KB
testcase_21 AC 13 ms
6,820 KB
testcase_22 AC 58 ms
8,064 KB
testcase_23 AC 46 ms
12,672 KB
testcase_24 AC 74 ms
17,408 KB
testcase_25 AC 7 ms
6,820 KB
testcase_26 AC 11 ms
6,820 KB
testcase_27 AC 76 ms
9,856 KB
testcase_28 AC 93 ms
11,336 KB
testcase_29 AC 106 ms
13,576 KB
testcase_30 AC 14 ms
7,424 KB
testcase_31 AC 81 ms
19,072 KB
testcase_32 AC 102 ms
21,632 KB
testcase_33 AC 20 ms
14,080 KB
testcase_34 AC 160 ms
33,076 KB
testcase_35 AC 166 ms
33,024 KB
testcase_36 AC 162 ms
33,060 KB
testcase_37 AC 133 ms
36,832 KB
testcase_38 AC 95 ms
12,928 KB
testcase_39 AC 91 ms
26,064 KB
testcase_40 AC 153 ms
35,944 KB
testcase_41 AC 111 ms
30,144 KB
testcase_42 AC 153 ms
36,060 KB
testcase_43 AC 150 ms
36,172 KB
testcase_44 AC 85 ms
25,668 KB
testcase_45 AC 142 ms
34,284 KB
testcase_46 AC 140 ms
33,816 KB
testcase_47 AC 129 ms
32,792 KB
testcase_48 AC 94 ms
26,860 KB
testcase_49 AC 143 ms
35,000 KB
testcase_50 AC 163 ms
32,804 KB
testcase_51 AC 93 ms
13,056 KB
testcase_52 AC 109 ms
30,964 KB
testcase_53 AC 111 ms
30,976 KB
testcase_54 AC 113 ms
30,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for(long long i = 0; i < n; i++)
#define ALL(v) (v).begin(), (v).end()
using namespace std;

using lint = long long;

template <class T = long long>
struct WeightedUnionFind {
    private:
    int n;
    vector<int> par;
    vector<T> diff_weight;
    
    public:
    WeightedUnionFind() {}
    WeightedUnionFind(int n_) : n(n_), par(n, -1), diff_weight(n, T(0)) {}
    
    int leader(int x) {
        assert(0 <= x && x < n);
        if (par[x] < 0) {
            return x;
        } else {
            int r = leader(par[x]);
            diff_weight[x] += diff_weight[par[x]];
            return par[x] = r;
        }
    }
    
    T weight(int x) {
        assert(0 <= x && x < n);
        leader(x);
        return diff_weight[x];
    }
    
    T diff(int x, int y) {
        assert(0 <= x && x < n);
        assert(0 <= y && y < n);
        return weight(y) - weight(x);
    }
    
    int merge(int x, int y, T w) {
        assert(0 <= x && x < n);
        assert(0 <= y && y < n);
        w += weight(x);
        w -= weight(y);
        x = leader(x);
        y = leader(y);
        if (x == y) {
            return x;
        }
        if (-par[x] < -par[y]) {
            swap(x, y);
            w *= T(-1);
        }
        par[x] += par[y];
        par[y] = x;
        diff_weight[y] = w;
        return x;
    }
    
    bool same(int x, int y) {
        assert(0 <= x && x < n);
        assert(0 <= y && y < n);
        return leader(x) == leader(y);
    }
    
    int size(int x) {
        assert(0 <= x && x < n);
        return -par[leader(x)];
    }
    
    vector<vector<int>> groups() {
        vector<vector<int>> member(n);
        for (int i = 0; i < n; i++) {
            member[leader(i)].emplace_back(i);
        }
        vector<vector<int>> res;
        for (int i = 0; i < n; i++) {
            if (member[i].size() > 0) {
                res.emplace_back(member[i]);
            }
        }
        return res;
    }
};

template <class T>
struct Edge {
    int from, to;
    T cost;
    int idx;
    
    Edge() {}
    Edge(int to_) : to(to_) {}
    Edge(int to_, T cost_) : to(to_), cost(cost_) {}
    Edge(int from_, int to_, int idx_) : from(from_), to(to_), idx(idx_) {}
    Edge(int from_, int to_, T cost_, int idx_) : from(from_), to(to_), cost(cost_), idx(idx_) {}
};

template <class T> using Graph = vector<vector<Edge<T>>>;
using graph = Graph<long long>;
using edge = Edge<long long>;

#define add emplace_back

struct Dijkstra {
    private:
    graph g;
    int n, s;
    vector<long long> d;
    vector<edge> prev;
    vector<bool> visit;
    priority_queue<pair<long long, int>, vector<pair<long long, int>>, greater<pair<long long, int>>> pq;
    
    public:
    Dijkstra(graph g_, int s_) : g(g_), n(g.size()), s(s_), d(n, 1000000000000000000), prev(n), visit(n, false) {
        d[s] = 0LL;
        pq.emplace(d[s], s);
        while (!pq.empty()) {
            int v = pq.top().second;
            pq.pop();
            if (visit[v]) {
                continue;
            }
            visit[v] = true;
            for (auto e : g[v]) {
                int nv = e.to;
                long long nc = e.cost;
                if (d[nv] > d[v] + nc) {
                    d[nv] = d[v] + nc;
                    prev[nv] = e;
                    pq.emplace(d[nv], nv);
                }
            }
        }
    }
    
    vector<long long> dists() {
        return d;
    }
    
    long long dist(int t) {
        return d[t];
    }
    
    vector<edge> route(int t) {
        if (s == t || d[t] == 1000000000000000000) {
            return {};
        }
        vector<edge> res;
        int cur = t;
        while (cur != s) {
            res.emplace_back(prev[cur]);
            cur = prev[cur].from;
        }
        reverse(res.begin(), res.end());
        return res;
    }
};

int main() {
    int n, m;
    cin >> n >> m;
    WeightedUnionFind uf(n);
    graph g(n);
    int s = -1, t = -1, id = -1;
    rep(i, m) {
        int u, v;
        lint w;
        cin >> u >> v >> w;
        u--;
        v--;
        if (!uf.same(u, v)) {
            uf.merge(v, u, w);
            g[u].add(u, v, w, i);
            g[v].add(v, u, w, i);
        } else {
            lint d = uf.diff(v, u);
            if (d == w) {
                uf.merge(v, u, w);
                g[u].add(u, v, w, i);
                g[v].add(v, u, w, i);
            } else if (d > w) {
                s = u;
                t = v;
                id = i;
                break;
            } else {
                s = v;
                t = u;
                id = i;
                break;
            }
        }
    }
    if (s >= 0) {
        auto r = Dijkstra(g, s).route(t);
        cout << r.size() + 1 << endl << s + 1 << endl;
        for (auto e : r) {
            cout << e.idx + 1 << " ";
        }
        cout << id + 1 << endl;
        return 0;
    }
    cout << -1 << endl;
}
0