Labeling Balls

Time Limit: 1000MS
Memory Limit: 65536K

Total Submissions: 13201
Accepted: 3811

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, bN) 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
 

题目链接:

http://poj.org/problem?id=3687
 

题意:,有N个质量不同的球,分别为1~N.每个测试数据a,b表示两个球的质量a<b.输出编号1~N的球的质量.如果存在多个方案,则输出编号为1的球质量最轻的方案,如果还是有多个方案,则输出编号为2得球质量最轻的方案,以此类推.

 

思路:输出的是质量,而不是编号.所以,输出的是编号所在的位置.这道题目用的是逆拓扑排序.先确定哪些球的入出为0,说明他们的质量是最大的一批,选取其中编号最大的球最为质量最大的球,重复此步骤.最后输出1~N号球的质量.

例:

不考虑输出要求。进行拓扑排序的结果(序号)

  • 1   4   5   3   2
  • 1   5   3   4   2
  • 1   5   4   3   2
  • 5   1   3   4   2
  • 5   1   4   3   2
  • 5   3   1   4   2

这所有的情况,第2种符合题目要求。那么输出为1 5 3 4 2(这里并不是序号,而是质量,即每个序号所在的位置)。


 代码:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int n,m,num;
int sign[];
int in[],out[];
int indegree[][],outdegree[][];
struct node
{
int p,m;
} ans[];
int cmp(node a,node b)
{
return a.p<b.p;
}
int Topsort()
{
int i,j,t;
num=;
for(t=; t<n; t++)
{
for(i=n; i>=; i--)
{
if(sign[i]==&&out[i]==)
break;
}
if(i<=) return -;
else
{
sign[i]=;
ans[num].p=i;
ans[num].m=n-(num++);
for(j=; j<in[i]; j++)
out[indegree[i][j]]--;
}
}
return ;
}
int main()
{
int i,T,u,v;
cin>>T;
while(T--)
{
cin>>n>>m;
memset(in,,sizeof(in));
memset(out,,sizeof(out));
memset(indegree,,sizeof(indegree));
memset(outdegree,,sizeof(outdegree));
for(i=; i<m; i++)
{
scanf("%d%d",&u,&v);
if(outdegree[u][out[u]]==)outdegree[u][out[u]++]=v;
if(indegree[v][in[v]]==)indegree[v][in[v]++]=u;
}
for(i=; i<=n; i++) sign[i]=;
if(Topsort()<) cout<<"-1"<<endl;
else
{
sort(ans,ans+n,cmp);
for(i=; i<n-; i++)
cout<<ans[i].m<<" ";
cout<<ans[i].m<<endl;
}
}
return ;
}
/*
2 5 4
1 4
4 2
5 3
3 2 5 3
1 4
4 2
3 5 ans=
1 5 3 4 2
1 3 4 2 5
*/

POJ3687.Labeling Balls 拓扑排序的更多相关文章

  1. [ACM] POJ 3687 Labeling Balls (拓扑排序,反向生成端)

    Labeling Balls Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 10161   Accepted: 2810 D ...

  2. [poj3687]Labeling Balls_拓扑排序

    Labeling Balls poj-3687 题目大意:给出一些球之间的大小关系,求在满足这样的关系下,编号小的尽量比编号大的球的方案. 注释:1<=N(球的个数)<=200,1< ...

  3. poj 3687 Labeling Balls(拓扑排序)

    题目:http://poj.org/problem?id=3687题意:n个重量为1~n的球,给定一些编号间的重量比较关系,现在给每个球编号,在符合条件的前提下使得编号小的球重量小.(先保证1号球最轻 ...

  4. PKU 3687 Labeling Balls(拓扑排序)

    题目大意:原题链接 给出N个未编号的质量各不相同的球,以及它们质量轻重的大小关系,给它们从1-N贴标签编号,无重复.问是否存在可行的编号方法,不存在输出-1, 如果存在则输出唯一一种方案,此方案是使得 ...

  5. Java实现Labeling Balls(拓扑排序的应用)

    1 问题描述 给出一些球,从1N编号,他们的重量都不相同,也用1N标记加以区分(这里真心恶毒啊,估计很多WA都是因为这里),然后给出一些约束条件,< a , b >要求编号为 a 的球必须 ...

  6. POJ3687——Labeling Balls(反向建图+拓扑排序)

    Labeling Balls DescriptionWindy has N balls of distinct weights from 1 unit to N units. Now he tries ...

  7. POJ3687 Labeling Balls(拓扑排序\贪心+Floyd)

    题目是要给n个重量1到n的球编号,有一些约束条件:编号A的球重量要小于编号B的重量,最后就是要输出字典序最小的从1到n各个编号的球的重量. 正向拓扑排序,取最小编号给最小编号是不行的,不举出个例子真的 ...

  8. POJ-3687 Labeling Balls(拓扑)

    不一样的拓扑排序 给定一些标记为1到n的数, 求出满足a < b 的序列, 如果有多个输出, 按先标签1往前的位置, 然后按标签2往前的位置, 对于每个标签, 位置都尽量往前. 因为位置要往前, ...

  9. POJ3687 Labeling Balls

    Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 13645   Accepted: 3955 Description Wind ...

随机推荐

  1. 抽象工厂模式( Abstract Factory )

    提供一个创建一系列相关或相互依赖对象的接口,而无需指定它们具体的类.解决多产品多等级结构.模式的类图如下: 抽象工厂模式的优点: 易于交换产品系列,由于具体工厂类在一个应用中只需要在初始化的时候出现一 ...

  2. OpenCL 双调排序 GPU 版

    ▶ 参考书中的代码,写了 ● 代码,核函数文件包含三中算法 // kernel.cl __kernel void bitonicSort01(__global uint *data, const ui ...

  3. leetcode237

    /** * Definition for singly-linked list. * public class ListNode { * public int val; * public ListNo ...

  4. 怎样把代码复制到word中并保持颜色

  5. SQL Server 2005 无法连接到WMI提供程序 无法执行 SQL Server 系统配置检查器

    无法连接到WMI提供程序.你没有权限或者该服务器无法访问/cannot connect to WMI provider. You do not have permission or the--由于计算 ...

  6. android中配置文件property的用途以及使用<转>

    1.首先在源代码根目录(src下)下创建一个名为netconfig.properties的文件(也可以在其他目录下). 2.打开netconfig.properties文件,在该文件中添加下列代码. ...

  7. JSP技术复习

    JSP是一种运行在服务器端的脚本语言,是用来开发动态网页的技术,它是Java Web程序的开发重要技术 JSP页面主要由HTML和JSP代码构成,JSP代码是通过"<%"和& ...

  8. ArcGIS案例学习笔记2_1

    ArcGIS案例学习笔记2_1 联系方式:谢老师,135_4855_4328,xiexiaokui#qq.com 时间:第二天上午 案例1:学校选址 内容:栅格数据分析 教程:pdf page=323 ...

  9. python并行编程

    一.编程思想 并行编程的思想:分而治之,有两种模型 1.MapReduce:将任务划分为可并行的多个子任务,每个子任务完成后合并得到结果 例子:统计不同形状的个数. 先通过map进行映射到多个子任务, ...

  10. Hadoop slaves 没有nodeManager

    1../start-yarn.sh 后从服务器没有nodemanager 进程,并且这里没有报错 在从服务器上的日志上见: 从服务器查看日志: 查看2.8.4官方文档: https://hadoop. ...