码迷,mamicode.com
首页 > 其他好文 > 详细

HDU1285

时间:2017-04-01 11:39:13      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:cstring   iostream   namespace   alt   题目   hdu1285   str   bsp   print   

题目

分析:将先后关系看成边,最后求出字典序最小的拓扑序列

技术分享
 1 #include "iostream"
 2 #include "cstdio"
 3 #include "cstring"
 4 #include "string"
 5 using namespace std;
 6 const int maxn=550;
 7 int g[maxn][maxn];  //记录是否存在边
 8 int res[maxn];  //记录拓扑序列
 9 int edge[maxn];  //记录入度
10 int n,m;
11 void topo(){
12     for(int i=1;i<=n;i++){
13         for(int j=1;j<=n;j++){
14             if(g[i][j])
15                 edge[j]++;
16         }
17     }
18     for(int i=1;i<=n;i++){
19         int k=1;
20         while(edge[k]!=0) k++;
21         res[i]=k;
22         edge[k]=-1;
23         for(int j=1;j<=n;j++)
24             if(g[k][j])
25                 edge[j]--;
26     }
27 }
28 int main()
29 {
30     while(cin>>n>>m)
31     {
32         memset(g,0,sizeof(g));
33         memset(res,0,sizeof(res));
34         memset(edge,0,sizeof(edge));
35         for(int i=0;i<m;i++){
36             int x,y;
37             scanf("%d%d",&x,&y);
38             g[x][y]=1;
39         }
40         topo();
41         for(int i=1;i<n;i++)
42             printf("%d ",res[i]);
43         printf("%d\n",res[n]);
44     }
45 }
View Code

 

HDU1285

标签:cstring   iostream   namespace   alt   题目   hdu1285   str   bsp   print   

原文地址:http://www.cnblogs.com/wolf940509/p/6655243.html

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