915D. Almost Acyclic Graph( 拓扑排序判环)

You are given a directed graph consisting of n vertices and m edges (each edge is directed, so it can be traversed in only one direction). You are allowed to remove at most one edge from it.

Can you make this graph acyclic by removing at most one edge from it? A directed graph is called acyclic iff it doesn't contain any cycle (a non-empty path that starts and ends in the same vertex).

Input

The first line contains two integers n and m (2 ≤ n ≤ 500, 1 ≤ m ≤ min(n(n - 1), 100000)) — the number of vertices and the number of edges, respectively.

Then m lines follow. Each line contains two integers u and v denoting a directed edge going from vertex u to vertex v (1 ≤ u, v ≤ n, u ≠ v). Each ordered pair (u, v) is listed at most once (there is at most one directed edge from u to v).

Output

If it is possible to make this graph acyclic by removing at most one edge, print YES. Otherwise, print NO.

Examples
Input
Copy
3 4
1 2
2 3
3 2
3 1
Output
YES
Input
Copy
5 6
1 2
2 3
3 2
3 1
2 1
4 5
Output
NO
Note

In the first example you can remove edge , and the graph becomes acyclic.

In the second example you have to remove at least two edges (for example, and ) in order to make the graph acyclic.

题意:

在所给的有向图中删除一条边,能否去掉所有的环

思路:拓扑排序判环,与哪条边相连无关,其本质是与点的入度有关,枚举边肯定会超时,枚举点,入度-1,则删除了一条通向它的一条边


#include<bits/stdc++.h>
using namespace std;
const int N = 505;
vector<int>G[N];
int n,m,in[N],d[N];
int topuSort(int s){
	memcpy(in,d,sizeof(d));
	queue<int>p;
	in[s]--;
	int cnt=0;
	for(int i=1;i<=n;i++){
		if(!in[i]) p.push(i);
	}
	while(!p.empty()){
		cnt++;
		int u=p.front();
		p.pop();
		for(int i=0;i<G[u].size();i++){
			int v=G[u][i];
			in[v]--;
			if(!in[v]) p.push(v);
		}
	}
	return cnt==n;
}
int main(){
	scanf("%d%d",&n,&m);
	for(int i=0;i<m;i++){
		int a,b;
		scanf("%d%d",&a,&b);
		G[a].push_back(b);
		d[b]++;
	}
	int flag=0;
	for(int i=1;i<=n;i++){
		if(topuSort(i)){
			flag=1;
			break;
		}
	}
	if(flag) printf("YES\n");
	else printf("NO\n");
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值