比赛 20120224 评测结果 AAAAAWWWWA
题目名称 课程安排问题 最终得分 60
用户昵称 Truth.Cirno 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2012-02-24 19:41:44
显示代码纯文本
#include <cstdio>
using namespace std;

int way[101]={0},ans[101]={0},sta[101]={0};
bool map[101][101]={0};

int main(void)
{
	freopen("curriculum.in","r",stdin);
	freopen("curriculum.out","w",stdout);
	int i,j,n,m,c,top,temp;
	bool broken=false;
	scanf("%d",&n);
	c=0;
	for (i=1;i<=n;i++)
	{
		scanf("%d",&m);
		way[i]+=m;
		for (j=0;j<m;j++)
		{
			scanf("%d",&temp);
			map[temp][i]=true;
		}
	}
	while (c<n)
	{
		top=0;
		for (i=1;i<=n;i++)
			if (way[i]==0)
			{
				way[i]--;
				ans[c]=i;
				c++;
				sta[top]=i;
				top++;
			}
		if (top==0)
		{
			broken=true;
			break;
		}
		for (i=0;i<top;i++)
		{
			for (j=1;j<=n;j++)
			{
				if (map[sta[i]][j]==true)
				{
					map[sta[i]][j]=false;
					way[j]--;
				}
			}
		}
	}
	if (broken&&c<n)
		printf("no");
	else
	{
		c--;
		for (i=0;i<c;i++)
			printf("%d ",ans[i]);
		printf("%d",ans[c]);
	}
	printf("\n");
	return(0);
}