Fu_L's Library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub Fu-L/cp-library

:heavy_check_mark: verify/library_checker/graph/two_edge_connected_components.test.cpp

Depends on

Code

#define PROBLEM "https://judge.yosupo.jp/problem/two_edge_connected_components"
#include "../../../src/template/template.hpp"
#include "../../../src/graph/graph_template.hpp"
#include "../../../src/graph/two_edge_connected_components.hpp"
int main(void) {
    int n, m;
    cin >> n >> m;
    Graph<int> g(n);
    rep(i, 0, m) {
        int a, b;
        cin >> a >> b;
        g.add_edge(a, b);
    }
    TwoEdgeConnectedComponents<int> low(g);
    int k = low.groups.size();
    cout << k << '\n';
    rep(i, 0, k) {
        int l = low.groups[i].size();
        cout << l << ' ';
        rep(j, 0, l) {
            cout << low.groups[i][j] << " \n"[j + 1 == l];
        }
    }
}
#line 1 "verify/library_checker/graph/two_edge_connected_components.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/two_edge_connected_components"
#line 2 "src/template/template.hpp"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<long long, long long>;
#define rep(i, a, b) for(long long i = (a); i < (b); ++i)
#define rrep(i, a, b) for(long long i = (a); i >= (b); --i)
constexpr long long inf = 4e18;
struct SetupIO {
    SetupIO() {
        ios::sync_with_stdio(0);
        cin.tie(0);
        cout << fixed << setprecision(30);
    }
} setup_io;
#line 3 "src/graph/graph_template.hpp"
template <typename T>
struct Edge {
    int from, to;
    T cost;
    int idx;
    Edge()
        : from(-1), to(-1), cost(-1), idx(-1) {}
    Edge(const int from, const int to, const T& cost = 1, const int idx = -1)
        : from(from), to(to), cost(cost), idx(idx) {}
    operator int() const {
        return to;
    }
};
template <typename T>
struct Graph {
    Graph(const int N)
        : n(N), es(0), g(N) {}
    int size() const {
        return n;
    }
    int edge_size() const {
        return es;
    }
    void add_edge(const int from, const int to, const T& cost = 1) {
        assert(0 <= from and from < n);
        assert(0 <= to and to < n);
        g[from].emplace_back(from, to, cost, es);
        g[to].emplace_back(to, from, cost, es++);
    }
    void add_directed_edge(const int from, const int to, const T& cost = 1) {
        assert(0 <= from and from < n);
        assert(0 <= to and to < n);
        g[from].emplace_back(from, to, cost, es++);
    }
    inline vector<Edge<T>>& operator[](const int& k) {
        assert(0 <= k and k < n);
        return g[k];
    }
    inline const vector<Edge<T>>& operator[](const int& k) const {
        assert(0 <= k and k < n);
        return g[k];
    }

   private:
    int n, es;
    vector<vector<Edge<T>>> g;
};
template <typename T>
using Edges = vector<Edge<T>>;
#line 4 "src/graph/low_link.hpp"
template <typename T>
struct LowLink {
    vector<int> ord, low, articulation;
    vector<pair<int, int>> bridge;
    LowLink(const Graph<T>& g)
        : ord(g.size(), -1), low(g.size(), -1) {
        for(int i = 0, k = 0; i < g.size(); ++i) {
            if(ord[i] == -1) k = dfs(g, i, k, -1);
        }
    }

   private:
    int dfs(const Graph<T>& g, const int idx, int k, const int par) {
        low[idx] = (ord[idx] = k++);
        int cnt = 0;
        bool arti = false, second = false;
        for(const Edge<T>& e : g[idx]) {
            const int to = e.to;
            if(ord[to] == -1) {
                ++cnt;
                k = dfs(g, to, k, idx);
                low[idx] = min(low[idx], low[to]);
                arti |= (par != -1) and (low[to] >= ord[idx]);
                if(ord[idx] < low[to]) {
                    bridge.emplace_back(minmax(idx, to));
                }
            } else if(to != par or second) {
                low[idx] = min(low[idx], ord[to]);
            } else {
                second = true;
            }
        }
        arti |= (par == -1) and (cnt > 1);
        if(arti) articulation.emplace_back(idx);
        return k;
    }
};
#line 5 "src/graph/two_edge_connected_components.hpp"
template <typename T>
struct TwoEdgeConnectedComponents {
    vector<vector<int>> groups, tree;
    TwoEdgeConnectedComponents(const Graph<T>& g)
        : n(g.size()), k(0), low(g), comp(n, -1) {
        for(int i = 0; i < n; ++i) {
            if(comp[i] == -1) dfs(g, i, -1);
        }
        groups.resize(k);
        tree.resize(k);
        for(int i = 0; i < n; ++i) {
            groups[comp[i]].emplace_back(i);
        }
        for(const pair<int, int>& e : low.bridge) {
            int u = comp[e.first], v = comp[e.second];
            tree[u].emplace_back(v);
            tree[v].emplace_back(u);
        }
    }
    inline int operator[](const int& i) const {
        assert(0 <= i and i < n);
        return comp[i];
    }

   private:
    int n, k;
    LowLink<T> low;
    vector<int> comp;
    void dfs(const Graph<T>& g, const int i, const int p) {
        if(p >= 0 and low.ord[p] >= low.low[i]) comp[i] = comp[p];
        else comp[i] = k++;
        for(const Edge<T>& e : g[i]) {
            if(comp[e.to] == -1) dfs(g, e.to, i);
        }
    }
};
#line 5 "verify/library_checker/graph/two_edge_connected_components.test.cpp"
int main(void) {
    int n, m;
    cin >> n >> m;
    Graph<int> g(n);
    rep(i, 0, m) {
        int a, b;
        cin >> a >> b;
        g.add_edge(a, b);
    }
    TwoEdgeConnectedComponents<int> low(g);
    int k = low.groups.size();
    cout << k << '\n';
    rep(i, 0, k) {
        int l = low.groups[i].size();
        cout << l << ' ';
        rep(j, 0, l) {
            cout << low.groups[i][j] << " \n"[j + 1 == l];
        }
    }
}
Back to top page