• hdu1285 确定比赛名次(拓扑排序)


    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 46160    Accepted Submission(s): 17565


    Problem Description
    有N个比赛队(1<=N<=500),编号依次为1,2,3,。。。。,N进行比赛,比赛结束后,裁判委员会要将所有参赛队伍从前往后依次排名,但现在裁判委员会不能直接获得每个队的比赛成绩,只知道每场比赛的结果,即P1赢P2,用P1,P2表示,排名时P1在P2之前。现在请你编程序确定排名。
     
    Input
    输入有若干组,每组中的第一行为二个数N(1<=N<=500),M;其中N表示队伍的个数,M表示接着有M行的输入数据。接下来的M行数据中,每行也有两个整数P1,P2表示即P1队赢了P2队。
     
    Output
    给出一个符合要求的排名。输出时队伍号之间有空格,最后一名后面没有空格。

    其他说明:符合条件的排名可能不是唯一的,此时要求输出时编号小的队伍在前;输入数据保证是正确的,即输入数据确保一定能有一个符合要求的排名。
     
    Sample Input
    4 3 1 2 2 3 4 3
     
    Sample Output
    1 2 4 3
     
    拓扑排序的裸题,用了优先队列和邻接表
     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 
     4 const int N=505;
     5 vector<int> vec[N];
     6 int indu[N],vis[N];
     7 priority_queue<int,vector<int>,greater<int> > que;
     8 vector<int> res;
     9 
    10 void init(){
    11     for(int i=0;i<N;i++){
    12         vec[i].clear();
    13     }
    14     memset(indu,0,sizeof indu);
    15     memset(vis,0,sizeof vis);
    16     while(!que.empty()){
    17         que.pop();
    18     }
    19     res.clear();
    20 }
    21 
    22 int main(){
    23     int n,m,x,y;
    24     while(~scanf("%d%d",&n,&m)){
    25         init();
    26         for(int i=0;i<m;i++){
    27             scanf("%d%d",&x,&y);
    28             vec[x].push_back(y);
    29             indu[y]++;
    30         }
    31         for(int i=1;i<=n;i++){
    32             if(indu[i]==0){
    33                 que.push(i);
    34                 vis[i]=1;
    35             }
    36         }
    37         while(!que.empty()){
    38             int k=que.top();
    39             que.pop();
    40             res.push_back(k);
    41             for(int i=0;i<vec[k].size();i++){
    42                 int v=vec[k][i];
    43                 if(indu[v]>0){
    44                     indu[v]--;
    45                     if(indu[v]==0&&vis[v]==0){
    46                         que.push(v);
    47                         vis[v]=1;
    48                     }
    49                 }
    50             }
    51         }
    52         for(int i=0;i<res.size();i++){
    53             if(i) printf(" ");
    54             printf("%d",res[i]);
    55         }
    56         printf("
    ");
    57     }
    58 }
  • 相关阅读:
    HTML5 程序设计笔记(一)
    前端插件小结
    Android 学习手札(三) 视图(View)
    Python32期【pthon基础 day 3】01 早测试
    Python32期【pthon基础 day 2】04 数据类型1-2
    Python32期【pthon基础 day 2】03 数据类型2
    Python32期【pthon基础 day 2】02 数据类型1
    Python32期【pthon基础 day 2】01 早测试
    Python32期【pthon基础 day 1】03 小作业
    Python32期【pthon基础 day 1】02 注释2
  • 原文地址:https://www.cnblogs.com/ChangeG1824/p/11656961.html
Copyright © 2020-2023  润新知