제출 #527421

#제출 시각아이디문제언어결과실행 시간메모리
527421joelauPipes (CEOI15_pipes)C++14
100 / 100
943 ms16044 KiB
#include <bits/stdc++.h>
using namespace std;

int N,M,ufds[100005], ufds1[100005], depth[100005], low[100005];
vector<int> lst[100005];

int findSet(int i) {
    return ufds[i] == i ? i : ufds[i] = findSet(ufds[i]);
}

void unionSet (int i, int j) {
    int a = findSet(i), b = findSet(j);
    if (a != b) ufds[a] = b;
}

int findSet1(int i) {
    return ufds1[i] == i ? i : ufds1[i] = findSet1(ufds1[i]);
}

void unionSet1 (int i, int j) {
    int a = findSet1(i), b = findSet1(j);
    if (a != b) ufds1[a] = b;
}

void dfs (int x, int p, int d) {
    depth[x] = d, low[x] = d;
    bool b = true;
    for (int v: lst[x]) {
        if (depth[v] == -1) {
            dfs(v,x,d+1);
            if (low[v] > depth[x]) cout << x+1 << ' ' << v+1 << '\n';
            low[x] = min(low[x],low[v]);
        }
        else if (v == p && b) b = false;
        else low[x] = min(low[x],depth[v]);
    }
}

int main() {
    ios_base::sync_with_stdio(false); cin.tie(NULL);
    cin >> N >> M;
    for (int i = 0; i < N; ++i) ufds[i] = i, ufds1[i] = i;
    for (int i = 0; i < M; ++i) {
        int u,v; cin >> u >> v; u--, v--;
        if (findSet(u) != findSet(v)) {
            unionSet(u,v);
            lst[u].push_back(v), lst[v].push_back(u);
        }
        else if (findSet1(u) != findSet1(v)) {
            unionSet1(u,v);
            lst[u].push_back(v), lst[v].push_back(u);
        }
    }
    memset(depth,-1,sizeof(depth));
    for (int i = 0; i < N; ++i) if (depth[i] == -1) dfs(i,-1,0);

    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...