zoukankan      html  css  js  c++  java
  • POJ 3687 Labeling Balls



    Labeling Balls
    Time Limit: 1000MSMemory Limit: 65536K
    Total Submissions: 9221Accepted: 2510

    Description

    Windy has N balls of distinct weights from 1 unit to N units. Now he tries to label them with 1 to N in such a way that:

    1. No two balls share the same label.
    2. The labeling satisfies several constrains like "The ball labeled with a is lighter than the one labeled with b".

    Can you help windy to find a solution?

    Input

    The first line of input is the number of test case. The first line of each test case contains two integers, N (1 ≤ N ≤ 200) and M (0 ≤ M ≤ 40,000). The next M line each contain two integers a and b indicating the ball labeled with a must be lighter than the one labeled with b. (1 ≤ a, b ≤ N) There is a blank line before each test case.

    Output

    For each test case output on a single line the balls' weights from label 1 to label N. If several solutions exist, you should output the one with the smallest weight for label 1, then with the smallest weight for label 2, then with the smallest weight for label 3 and so on... If no solution exists, output -1 instead.

    Sample Input

    5
    4 0

    4 1
    1 1

    4 2
    1 2
    2 1

    4 1
    2 1

    4 1
    3 2

    Sample Output

    1 2 3 4
    -1
    -1
    2 1 3 4
    1 3 2 4

    Source

    POJ Founder Monthly Contest – 2008.08.31, windy7926778 

    关键的地方就是要让标号小的尽量往前放,对于平行路径,小的头部不一定排在前面,但大的尾部一定排在后面!


    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <queue>

    using namespace std;

    const int MAXN=222;

    typedef struct
    {
        int to,next;
    }Edge;

    Edge E[MAXN*MAXN];
    int Adj[MAXN],Size,n,m,indegree[MAXN];
    int res[MAXN];
    void init()
    {
        Size=0;
        memset(Adj,-1,sizeof(Adj));
    }

    void Add_Edge(int u,int v)
    {
        E[Size].to=v;
        E[Size].next=Adj;
        Adj=Size++;
    }

    int topo()
    {
        priority_queue<int> que;
        int i,u,cnt=n;
        for(int i=1;i<=n;i++)
        {
            if(indegree==0)
                que.push(i);
        }
        while(!que.empty())
        {
            u=que.top();
            que.pop();
            indegree--;
            res=cnt--;
            for(int i=Adj;~i;i=E.next)
            {
                indegree[E.to]--;
                if(indegree[E.to]==0)
                    que.push(E.to);
            }
        }
        return cnt==0;
    }

    int main()
    {
        int T;
        scanf("%d",&T);
        while(T--)
        {
            init();
            memset(indegree,0,sizeof(indegree));
            scanf("%d%d",&n,&m);
            while(m--)
            {
                int a,b;
                scanf("%d%d",&a,&b);
                Add_Edge(b,a);
                indegree[a]++;
            }
            if(topo()==0)
            {
                puts("-1");
            }
            else
            {
                for(int i=1;i<=n;printf(" "),i++)
                {
                    printf("%d",res);
                }
                putchar(10);
            }
        }
        return 0;
    }
    * This source code was highlighted by YcdoiT. ( style: Codeblocks )
  • 相关阅读:
    深入浅出 Application Insights--学习笔记
    .NET Core 在 K8S 上的开发实践--学习笔记
    传统.NET应用向微服务架构迁移的实践经验--学习笔记
    微服务快速开发框架的设计--学习笔记
    在.NET Core下的机器学习--学习笔记
    RPA AI .NET Core 与未来--学习笔记
    当我们在谈 .NET Core 跨平台时,我们在谈些什么?--学习笔记
    .Net Core + 微信赋能企业级智能客服系统--学习笔记
    用ASP.NET Core构建可检测的高可用服务--学习笔记
    ASP.NET Core基于K8S的微服务电商案例实践--学习笔记
  • 原文地址:https://www.cnblogs.com/CKboss/p/3350891.html
Copyright © 2011-2022 走看看