結果

問題 No.2914 正閉路検出
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-10-04 22:05:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 4,199 bytes
コンパイル時間 5,415 ms
コンパイル使用メモリ 335,340 KB
実行使用メモリ 27,616 KB
最終ジャッジ日時 2024-10-04 22:05:43
合計ジャッジ時間 17,507 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 WA -
testcase_02 AC 1 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 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
6,816 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 22 ms
6,820 KB
testcase_20 AC 40 ms
6,820 KB
testcase_21 AC 11 ms
6,816 KB
testcase_22 AC 48 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 80 ms
6,820 KB
testcase_29 AC 218 ms
23,552 KB
testcase_30 AC 21 ms
10,612 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 149 ms
25,984 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 113 ms
20,864 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;

typedef long long ll;

struct UnionFindWeight {
    vector<ll> par;
    vector<ll> rank;
    vector<ll> diff_weight;

    UnionFindWeight(ll n = 1, ll SUM_UNITY = 0) { reset(n, SUM_UNITY); }

    void reset(ll n = 1, ll SUM_UNITY = 0) {
        par.resize(n);
        rank.resize(n);
        diff_weight.resize(n);
        for (ll i = 0; i < n; ++i)
            par[i] = i, rank[i] = 0, diff_weight[i] = SUM_UNITY;
    }

    ll root(ll x) {
        if (par[x] == x) {
            return x;
        } else {
            ll r = root(par[x]);
            diff_weight[x] += diff_weight[par[x]];
            return par[x] = r;
        }
    }

    ll weight(ll x) {
        root(x);
        return diff_weight[x];
    }

    bool same(ll x, ll y) { return root(x) == root(y); }

    bool unite(ll x, ll y, ll w) { // x ----(距離 w)---- y
        w += weight(x);
        w -= weight(y);
        x = root(x);
        y = root(y);
        if (x == y)
            return false;
        if (rank[x] < rank[y])
            swap(x, y), w = -w;
        if (rank[x] == rank[y])
            ++rank[x];
        par[y] = x;
        diff_weight[y] = w;
        return true;
    }

    ll dist(ll x, ll y) { return weight(y) - weight(x); }
};

template <typename T> struct Graph {
    struct edge {
        int to;
        T cost;
    };
    int N;
    vector<vector<edge>> G;
    vector<T> dist;
    vector<int> prever;

    Graph(int n) { init(n); }
    T inf() {
        if (is_same_v<T, int>)
            return 1e9;
        else
            return 1e18;
    }
    T zero() { return T(0); }

    void init(int n) {
        N = n;
        G.resize(N);
        dist.resize(N, inf());
    }
    void add_edge(int s, int t, T cost) {
        edge e;
        e.to = t, e.cost = cost;
        G[s].push_back(e);
    }
    void dijkstra(int s) {
        rep(i, 0, N) dist[i] = inf();
        prever = vector<int>(N, -1);
        dist[s] = zero();
        priority_queue<pair<T, int>, vector<pair<T, int>>,
                       greater<pair<T, int>>>
            q;
        q.push({zero(), s});
        while (!q.empty()) {
            int now;
            T nowdist;
            tie(nowdist, now) = q.top();
            q.pop();
            if (dist[now] < nowdist)
                continue;
            for (auto e : G[now]) {
                T nextdist = nowdist + e.cost; // 次の頂点への距離
                if (dist[e.to] > nextdist) {
                    prever[e.to] = now;
                    dist[e.to] = nextdist;
                    q.push({dist[e.to], e.to});
                }
            }
        }
    }

    vector<int> get_path(int t) { // tへの最短路構築
        if (dist[t] >= inf())
            return {-1};
        vector<int> path;
        for (; t != -1; t = prever[t]) {
            path.push_back(t);
        }
        reverse(path.begin(), path.end());
        return path;
    }
};

int main() {
    int n, m;
    cin >> n >> m;
    UnionFindWeight uf(n);
    Graph<ll> gr(n);
    map<pair<int, int>, int> ma;
    rep(i, 0, m) {
        ll l, r, d;
        cin >> l >> r >> d;
        l--, r--;
        if (uf.same(l, r)) {
            if (uf.dist(l, r) != d) {
                cerr << uf.dist(l, r) << " " << d << endl;
                if (uf.dist(l, r) < d) {
                    swap(l, r);
                }
                gr.dijkstra(l);
                auto path = gr.get_path(r);
                vector<int> ans;
                rep(j, 0, path.size() - 1) {
                    ans.push_back(ma[{path[j], path[j + 1]}]);
                }
                ans.push_back(i);
                cout << ans.size() << endl;
                cout << l + 1 << endl;
                rep(j, 0, ans.size()) { cout << ans[j] + 1 << ' '; }
                cout << endl;
                return 0;
            }
        } else {
            uf.unite(l, r, d);
            gr.add_edge(l, r, d);
            gr.add_edge(r, l, d);
            ma[{l, r}] = i;
            ma[{r, l}] = i;
        }
    }
    cout << "-1" << endl;
}
0