• T103481 【模板】割边


    题目地址


    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<vector>
    using namespace std;
    const int SIZE = 1e6;
    int head[SIZE], ver[SIZE * 2], Next[SIZE * 2];
    int dfn[SIZE], low[SIZE], c[SIZE];
    int n, m, tot, num, dcc, tc;
    bool bridge[SIZE * 2];
    int hc[SIZE], vc[SIZE * 2], nc[SIZE * 2];
    
    void add(int x, int y) {
    	ver[++tot] = y, Next[tot] = head[x], head[x] = tot;
    }
    
    void add_c(int x, int y) {
    	vc[++tc] = y, nc[tc] = hc[x], hc[x] = tc;
    }
    
    void tarjan(int x, int in_edge) {
    	dfn[x] = low[x] = ++num;
    	for (int i = head[x]; i; i = Next[i]) {
    		int y = ver[i];
    		if (!dfn[y]) {
    			tarjan(y, i);
    			low[x] = min(low[x], low[y]);
    			if (low[y] > dfn[x])
    				bridge[i] = bridge[i ^ 1] = true;
    		}
    		else if (i != (in_edge ^ 1))
    			low[x] = min(low[x], dfn[y]);
    	}
    }
    
    void dfs(int x) {
    	c[x] = dcc;
    	for (int i = head[x]; i; i = Next[i]) {
    		int y = ver[i];
    		if (c[y] || bridge[i]) continue;
    		dfs(y);
    	}
    }
    
    int main() {
    	cin >> n >> m;
    	tot = 1;
    	for (int i = 1; i <= m; i++) {
    		int x, y;
    		scanf("%d%d", &x, &y);
    		add(x, y), add(y, x);
    	}
    	for (int i = 1; i <= n; i++)
    		if (!dfn[i]) tarjan(i, 0);
    	int bridgeCnt=0;
    	for (int i = 2; i < tot; i += 2)
    		if (bridge[i]){
    			//printf("%d %d
    ", ver[i ^ 1], ver[i]);
    			bridgeCnt++;
    		}
    	printf("%d
    ",bridgeCnt);		
    	return 0;
    }
    

      

  • 相关阅读:
    Linux_修改网卡名
    综合架构_ansible_剧本编写
    综合架构_ansible自动化管理服务
    Linux_综合架构_ssh基于密钥_远程连接
    NFS项目实践
    综合架构_实时同步服务 inotify
    综合架构_nfs常见错误
    linux_知识点集锦
    企业全网备份数据
    综合架构_存储服务nfs
  • 原文地址:https://www.cnblogs.com/zbsy-wwx/p/11742115.html
Copyright © 2020-2023  润新知