Submission #386364

# Submission time Handle Problem Language Result Execution time Memory
386364 2021-04-06T13:04:19 Z FatihSolak Pipes (CEOI15_pipes) C++17
10 / 100
1591 ms 27244 KB
#include <bits/stdc++.h>
#define N 100005
using namespace std;
int par[N][2];
int find(int a,int val){
    if(par[a][val] == a)return a;
    return par[a][val] = find(par[a][val],val);
}
vector<pair<int,int>> adj[N];
map<pair<int,int>,int> mp;
bool merge(int a,int b,int val){
    int tmp1 = a,tmp2 = b;
    a = find(a,val);
    b = find(b,val);
    if(a == b)return 0;
    par[a][val] = b;
    adj[tmp1].push_back({tmp2,val});
    adj[tmp2].push_back({tmp1,val});
    if(val){
        mp[{tmp1,tmp2}] = 1;
        mp[{tmp2,tmp1}] = 1;
    }
    return 1;
}
int n;
vector<bool> visited;
vector<int> tin, low;
int timer;
void IS_BRIDGE(int v,int a){
    assert(!mp[make_pair(v,a)]);
    cout << v << " " << a << endl;
}
void dfs(int v, int p = -1) {
    visited[v] = true;
    tin[v] = low[v] = timer++;
    for (auto x : adj[v]) {
        int to = x.first;
        if (to == p) continue;
        if (visited[to]) {
            low[v] = min(low[v], tin[to]);
        } else {
            dfs(to, v);
            low[v] = min(low[v], low[to]);
            if (low[to] > tin[v] && !x.second)
                IS_BRIDGE(v, to);
        }
    }
}

void find_bridges() {
    timer = 0;
    visited.assign(N, false);
    tin.assign(N, -1);
    low.assign(N, -1);
    for (int i = 1; i <= n; ++i) {
        if (!visited[i])
            dfs(i);
    }
}
void solve(){
    int m;
    cin >> n >> m;
    for(int i=1;i<=n;i++){
        par[i][0] = par[i][1] = i;
    }
    int l,r;
    for(int i=1;i<=m;i++){
        cin >> l >> r;
        if(!merge(l,r,0))
            merge(l,r,1);
    }
    find_bridges();
}

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    #ifdef Local
    freopen("in.txt","r",stdin);
    freopen("out.txt","w",stdout);
    #endif
    int t=1;
    //cin>>t;
    while(t--){
        solve();
    }
    #ifdef Local
    cout<<endl<<fixed<<setprecision(2)<<1000.0 * clock() / CLOCKS_PER_SEC<< " milliseconds ";
    #endif
}
# Verdict Execution time Memory Grader output
1 Correct 3 ms 3436 KB Output is correct
2 Runtime error 8 ms 6892 KB Execution killed with signal 6
# Verdict Execution time Memory Grader output
1 Correct 11 ms 4460 KB Output is correct
2 Runtime error 15 ms 8556 KB Execution killed with signal 6
# Verdict Execution time Memory Grader output
1 Correct 122 ms 4332 KB Output is correct
2 Runtime error 125 ms 8300 KB Execution killed with signal 6
# Verdict Execution time Memory Grader output
1 Runtime error 213 ms 11756 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 353 ms 9180 KB Output is correct
2 Correct 295 ms 7532 KB Output is correct
# Verdict Execution time Memory Grader output
1 Runtime error 591 ms 20204 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 934 ms 22788 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1150 ms 27244 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1383 ms 27244 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1591 ms 26020 KB Memory limit exceeded
2 Halted 0 ms 0 KB -