poj 3687 Labeling Balls 【拓扑排序】

题目链接:http://poj.org/problem?id=3687

注意重边

代码:

#include <stdio.h>  
#include <ctime>  
#include <math.h>  
#include <limits.h>  
#include <complex>  
#include <string>  
#include <functional>  
#include <iterator>  
#include <algorithm>  
#include <vector>  
#include <stack>  
#include <queue>  
#include <set>  
#include <map>  
#include <list>  
#include <bitset>  
#include <sstream>  
#include <iomanip>  
#include <fstream>  
#include <iostream>  
#include <ctime>  
#include <cmath>  
#include <cstring>  
#include <cstdio>  
#include <time.h>  
#include <ctype.h>  
#include <string.h>  
#include <assert.h>  

using namespace std;

int in[210];
int is[210][210];
int ans[210];
int n, m;

int main()
{
    int t;
    int n, m;
    scanf("%d", &t);
    while (t--)
    {
        memset(in, 0, sizeof(in));
        memset(is, 0, sizeof(is));
        memset(ans, 0, sizeof(ans));

        scanf("%d%d", &n, &m);
        int ok = 1;
        int a, b;
        while (m--)
        {
            scanf("%d%d", &a, &b);
            if (a == b) ok = 0;
            if (is[a][b] == 1) ok = 0;
            if (is[b][a] == 0) in[a]++;
            is[b][a] = 1;
        }
        int num = 1;
        int cnt = 0;
        if (!ok) puts("-1");
        else
        {
            for (int k = n;k >= 1 ;k--)
            {
                int i = n;
                while (in[i] != 0 && i>=1) i--;
                in[i] = -1;ans[i] = k;

                if (i >= 1) cnt++;

                for (int j = 1;j <= n;j++)
                {
                    if (is[i][j])
                        in[j]--;
                }
            }
            if (cnt != n) puts("-1");
            else
            {
                for (int i = 1;i < n;i++)
                    printf("%d ", ans[i]);
                printf("%d\n", ans[n]);
            }
        }
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值