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.

Sample 1

InputOutput
3 4
1 2
2 3
3 2
3 1
YES

Sample 2

InputOutput
5 6
1 2
2 3
3 2
3 1
2 1
4 5
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.

思路:

依旧是使用图并进行寻找,中途再进行剪枝。

注意有STL的知识点。

#include<bits/stdc++.h>
using namespace std;
const int N=101010;
int n,m;
int yk[N],rd[N];
vector<int> aa[N];
queue<int>q;
int main()
{
	cin>>n>>m;
	for(int i=1;i<=m;i++)
	{
		int x,y;
		scanf("%d %d",&x,&y);
		aa[x].push_back(y);
		rd[y]++;
	}
	for(int j=1;j<=n;j++)
	{
		for(int i=1;i<=n;i++)
		{
			yk[i]=rd[i];
		}
		if(rd[j]==0)
			continue;
		yk[j]--;
		for(int i=1;i<=n;i++)
		{
			if(!yk[i])
			{
				q.push(i);
			}
		}
		int sum=0;
		while(!q.empty())
		{
			sum++;
			for(int i=0;i<aa[q.front()].size();i++)
			{
				yk[aa[q.front()][i]]--;
				if(!yk[aa[q.front()][i]])
				{
					q.push(aa[q.front()][i]);
				}
			}
			q.pop();
		}
		if(sum==n)
		{
			printf("YES");
			return 0;
		}
	}
	printf("NO");
	return 0;
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

TherAndI

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值