hdu 1285 確定比賽名次
阿新 • • 發佈:2017-08-24
ont 條件 printf pop 編號 pri 依次 拓撲排序 esc
Input
輸入有若幹組,每組中的第一行為二個數N(1<=N<=500),M;其中N表示隊伍的個數,M表示接著有M行的輸入數據。接下來的M行數據中,每行也有兩個整數P1,P2表示即P1隊贏了P2隊。
其他說明:符合條件的排名可能不是唯一的,此時要求輸出時編號小的隊伍在前;輸入數據保證是正確的,即輸入數據確保一定能有一個符合要求的排名。
Author
SmallBeer(CML)
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 28782 Accepted Submission(s):
11466
Output 給出一個符合要求的排名。輸出時隊伍號之間有空格,最後一名後面沒有空格。
其他說明:符合條件的排名可能不是唯一的,此時要求輸出時編號小的隊伍在前;輸入數據保證是正確的,即輸入數據確保一定能有一個符合要求的排名。
Sample Input 4 3 1 2 2 3 4 3
Sample Output 1 2 4 3
Source 杭電ACM集訓隊訓練賽(VII)
拓撲排序裸題
屠龍寶刀點擊就送#include <algorithm> #include <cstring> #include <cstdio> #include <queue> #define N 505 using namespace std; priority_queue<int,vector<int>,greater<int> >q; structEdge{ int next,to; }edge[N*N]; int ans[N],r=0,head[N],cnt,rd[N],n,m; void tppx() { for(int i=1;i<=n;++i) if(!rd[i]) q.push(i) ; for(int now;!q.empty();) { now=q.top();q.pop(); ans[++r]=now; for(int i=head[now];i;i=edge[i].next) { int v=edge[i].to; if(rd[v]) { rd[v]--; if(!rd[v]) q.push(v) ; } } } } inline void ins(int u,int v) { edge[++cnt].next=head[u]; edge[cnt].to=v; head[u]=cnt; } int main() { for(;scanf("%d%d",&n,&m)!=EOF;) { memset(edge,0,sizeof(edge)); memset(head,0,sizeof(head)); memset(rd,0,sizeof(rd)); r=cnt=0; for(int a,b;m--;) { scanf("%d%d",&a,&b); ins(a,b); rd[b]++; } tppx(); for(int i=1;i<r;++i) printf("%d ",ans[i]); printf("%d\n",ans[r]); } return 0; }
hdu 1285 確定比賽名次