LightOJ 1003 - Drunk【拓扑排序】

题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1003

拓扑排序判圈 ,若存在元素不在拓扑序中,则存在圈。

代码:

#include <stdio.h>
#include <iostream>
#include <math.h>
#include <stdlib.h>
#include <ctype.h>
#include <algorithm>
#include <vector>
#include <string.h>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <string>
#include <sstream>
#include <malloc.h>
#include <functional>

using namespace std;

char a[15], b[15];
map<string, int> mp;
int m, n, in[10010], tot;

struct Edge
{
    int to, next;
}edge[10010];

int head[10010];

void addedge(int u, int v)
{
    edge[tot].to = v;
    edge[tot].next = head[u];
    head[u] = tot++;
}

void init()
{
    tot = 0;
    memset(head, -1, sizeof(head));
    memset(in, 0, sizeof(in));
    mp.clear();
    n = 0;
}

int main()
{
    int t, cases = 1;
    scanf("%d", &t);
    while (t--)
    {
        scanf("%d", &m);
        init();

        for (int i = 1;i <= m;i++)
        {
            scanf("%s %s", a, b);
            if (mp.find(a) == mp.end()) mp[a] = ++n;
            if (mp.find(b) == mp.end()) mp[b] = ++n;

            in[mp[b]]++;
            addedge(mp[a], mp[b]);
        }

        int cnt = n;

        queue<int> que; while (!que.empty()) que.pop();
        for (int i = 1;i <= n;i++) if (in[i] == 0) que.push(i);
        while (!que.empty())
        {
            int tmp = que.front();que.pop();
            cnt--;
            for (int i = head[tmp];i != -1;i = edge[i].next)
            {
                int v = edge[i].to;
                in[v]--;
                if (in[v] == 0) que.push(v);
            }
        }

        if (!cnt) printf("Case %d: Yes\n", cases++);
        else printf("Case %d: No\n", cases++);
    }
    return 0;
}
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值