codeforces Round 36 D. Almost Acyclic Graph(dfs+拓扑排序判环)

http://codeforces.com/contest/915/problem/D

D. Almost Acyclic Graph
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 ≤ 5001 ≤ 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
3 4
1 2
2 3
3 2
3 1
output
YES
input
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.



【分析】

赛时没有A掉这道题。之后看群里讨论说,找到一个环,然后在这个环上dfs,枚举删掉遍历到的边,再拓扑排序判环。

今天写了个代码不知道为啥奇迹般的A了。直接dfs这个图,枚举删除遍历到的边 同时判环。

【代码】

#include<bits/stdc++.h>
using namespace std;
struct NODE{
    int from,to;
    int next;
    NODE(int f=0,int t=0,int ne=0){
        from=f;to=t;next=ne;
    }
}edge[220000];
int head[520];
int inn[520],in[520];//入度
int vis[520];
int n,m;
int flag=0;
int check()//拓扑排序判环
{
    int q[520],tail=0;
    for(int i=1;i<=n;i++)//入度为0的点入队
        if(!in[i])
            q[tail++]=i;
    for(int i=0;i<tail;i++)
    {
        int s=q[i];//此起点的边全删
        for(int j=head[s];j!=-1;j=edge[j].next)
        {
            in[edge[j].to]--;
            if(!in[edge[j].to])//新的入度为0的点
            {
                q[tail++]=edge[j].to;
            }
        }
    }
    return n==tail;
}
void dfs(int u)
{
    if(flag)return;
    for(int k=head[u];~k;k=edge[k].next)if(!vis[edge[k].to])
    {
        int t=edge[k].to;
        vis[t]=1;
        for(int i=1;i<=n;i++)in[i]=inn[i];
        in[t]--;
        if(check()){flag=1;break;}
        dfs(t);
    }
}
int main()
{
    while(cin>>n>>m)
    {
        memset(head,-1,sizeof(head));
        memset(in,0,sizeof(in));
        for(int i=0;i<m;i++)
        {
            int f,t;
            scanf("%d%d",&f,&t);
            in[t]++;
            inn[t]++;
            edge[i]=NODE(f,t,head[f]);
            head[f]=i;//链式前向星
        }
        memset(vis,0,sizeof(vis));
        flag=0;
        for(int i=1;i<=n;i++)dfs(i);
        if(flag)printf("Yes\n");
        else printf("No\n");
    }
    return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

雪的期许

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

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

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

打赏作者

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

抵扣说明:

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

余额充值