CF 915 D 拓扑排序

Posted roni-i

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF 915 D 拓扑排序相关的知识,希望对你有一定的参考价值。

#include <bits/stdc++.h>

using namespace std;

const int maxn = 1e5 + 10;
const int mod = 142857;
int t,n,m,k,x,u,v,w,num,flag;
vector<int> G[maxn];
int inDeg[maxn], ruDeg[maxn];
int virus[maxn];
queue<int> q;

bool topSort()
{
    num=0;
    while(!q.empty()) q.pop();
    for(int i=1;i<=n;i++) if(!inDeg[i]) q.push(i);
    while(!q.empty())
    {
        int now = q.front();
        q.pop();
        num++;
        for(int i=0;i<G[now].size();i++)
        {
            int nxt = G[now][i];
            if(--inDeg[nxt] == 0) q.push(nxt);
        }
    }
    if(num == n) return true;
    else return false;
}

int main()
{
       while(~ scanf("%d%d",&n,&m) )
       {
            memset(inDeg,0,sizeof(inDeg));
            memset(ruDeg,0,sizeof(ruDeg));
            for(int i=1;i<=n;i++) G[i].clear();
            while(m--)
            {
                scanf("%d%d",&u,&v);
                G[u].push_back(v);
                inDeg[v]++;
                ruDeg[v]++;
            }
            if(topSort())
            {
                puts("YES");
                continue;
            }
            else
            {
                flag = 0;
                for(int i=1; i<=n; i++)
                {
                    memcpy(inDeg,ruDeg,sizeof(ruDeg));
                    if(inDeg[i] >= 1)
                    {
                        inDeg[i]--;
                        if(topSort())
                        {
                            flag = 1;
                            puts("YES");
                            break;
                        }
                    }
                }
            }
            if(flag == 0) puts("NO");
       }
}

以上是关于CF 915 D 拓扑排序的主要内容,如果未能解决你的问题,请参考以下文章

CodeForces915 D. Almost Acyclic Graph 拓扑排序找环

Codeforces915 D. Almost Acyclic Graph(思维,拓扑排序原理,拓扑排序判环)

Almost Acyclic Graph CodeForces - 915D (思维+拓扑排序判环)

codeforces 915D Almost Acyclic Graph 拓扑排序

CF #541 D Gourmet choice

[CF915F] Imbalance Value of a Tree