洛谷P1137 旅行计划

 1 //拓扑排序 
 2 #include<bits/stdc++.h>
 3 #include<queue>
 4 using namespace std;
 5 const int maxn=100005;
 6 const int maxm=200005;
 7 struct edge{
 8     int to;edge *Nex;
 9 }tmp[maxm],*head[maxn];
10 int top=-1;
11 bool v[maxn];
12 inline void add(int x,int y)
13 {
14     tmp[++top].to=y;tmp[top].Nex=head[x];head[x]=&tmp[top];
15 }
16 queue<int> q;
17 int n,m,du[maxn],dis[maxn];
18 void topo()
19 {
20     for(int i=1;i<=n;++i) if(!du[i]) q.push(i),dis[i]=1;
21     while(!q.empty())
22     {
23         int p=q.front();q.pop();
24         for(edge *i=head[p];i!=NULL;i=i->Nex)
25         {
26             dis[i->to]=max(dis[i->to],dis[p]+1);
27             --du[i->to];
28             if(!du[i->to]) q.push(i->to); 
29         }
30     }
31 } 
32 int main()
33 {
34     scanf("%d%d",&n,&m);
35     for(int i=1,x,y;i<=m;++i) scanf("%d%d",&x,&y),add(x,y),++du[y];
36     topo();
37     for(int i=1;i<=n;++i) printf("%d\n",dis[i]);
38     return 0;
39 }

 

转载于:https://www.cnblogs.com/yu-xing/p/10315196.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值