其他分享
首页 > 其他分享> > HDU 3342 Legal or Not

HDU 3342 Legal or Not

作者:互联网

有向图判环。

拓扑排序

判断拓扑排序的结果是否包含\(n\)个点。

const int N=110;
vector<int> g[N];
int din[N];
int n,m;

bool topo()
{
    queue<int> q;
    for(int i=0;i<n;i++)
        if(din[i] == 0)
            q.push(i);

    int cnt=0;
    while(q.size())
    {
        int t=q.front();
        q.pop();
        cnt++;

        for(int i=0;i<g[t].size();i++)
        {
            int j=g[t][i];
            if(--din[j] == 0) q.push(j);
        }
    }
    if(cnt < n) return false;
    return true;
}

int main()
{
    while(cin>>n>>m && n)
    {
        for(int i=0;i<n;i++) g[i].clear(),din[i]=0;

        while(m--)
        {
            int a,b;
            cin>>a>>b;
            g[a].pb(b);
            din[b]++;
        }

        if(topo()) puts("YES");
        else puts("NO");
    }

    //system("pause");
    return 0;
}

标签:HDU,puts,3342,拓扑,din,Legal,topo,int,排序
来源: https://www.cnblogs.com/fxh0707/p/14470361.html