码迷,mamicode.com
首页 > 编程语言 > 详细

hdu 1285 比赛排名 【拓扑排序】

时间:2015-05-07 08:56:50      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

拓扑排序模版题

#include<stdio.h>

#include<string.h>
#include<algorithm>
#include<iostream>
#include<queue>
using namespace std;
const int maxe=250000+10;
const int maxh=500+10;
typedef struct Edge
{
    int to,next;
};
Edge E[maxe];
int head[maxh],in[maxh],n,m,cnt;
bool map[maxh][maxh];
void init(int num)
{
    for(int i=0;i<=num;i++)
    {
        head[i]=-1;
        in[i]=0;
        for(int j=0;j<=num;j++)
        map[i][j]=false;
    }
    cnt=0;
}
void add(int a,int b)
{
    E[cnt].to=b;
    E[cnt].next=head[a];
    head[a]=cnt++;
}
int main()
{
    int x,y,sum;
    while(~scanf("%d%d",&n,&m))
    {
        init(n);
        for(int i=0;i<m;i++)
        {
            scanf("%d%d",&x,&y);
            if(!map[x][y])
            {
              map[x][y]=true;
              add(x,y);
              in[y]++;
            }
        }
        priority_queue<int,vector<int>,greater<int> >Q;
        for(int i=1;i<=n;i++)
        {
            if(!in[i])
            {
                Q.push(i);
            }
        }
        sum=n;
        while(!Q.empty())
        {
            int fir=Q.top();
            sum--;
            Q.pop();
            if(sum)printf("%d ",fir);
            else printf("%d\n",fir);
            for(int i=head[fir];i+1;i=E[i].next)
            {
                in[E[i].to]--;
                if(!in[E[i].to])
                {
                    Q.push(E[i].to);
                }
            }
        }
    }
    return 0;
}   

hdu 1285 比赛排名 【拓扑排序】

标签:

原文地址:http://blog.csdn.net/letterwuyu/article/details/45541451

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!