CodeForces - 645D Robot Rapping Results Report

來源:互聯網
上載者:User

標籤:target   repo   二分   inline   sizeof   efi   class   return   ORC   

題面在這裡!

 

    要有唯一的拓撲序的話,拓撲排序的時候隊列就必須一直只有一個元素,二分check一下就好啦。

 

#include<bits/stdc++.h>#define ll long longusing namespace std;const int N=1e5+5;int hd[N],to[N],ne[N],num,n,m;int d[N],ans=-1,mid;inline void add(int x,int y){ to[++num]=y,ne[num]=hd[x],hd[x]=num;}inline bool check(){memset(d,0,sizeof(d)); int x=0,y;for(int i=1;i<=mid;i++) d[to[i]]++;for(int i=1;i<=n;i++) if(!d[i]) if(!x) x=i; else return 0;for(;x;){y=x,x=0;for(int i=hd[y];i;i=ne[i]) if(i<=mid&&!(--d[to[i]]))if(!x) x=to[i]; else return 0;}    return 1;}int main(){scanf("%d%d",&n,&m);for(int i=1,uu,vv;i<=m;i++)scanf("%d%d",&uu,&vv),add(uu,vv);int l=1,r=m;while(l<=r){mid=l+r>>1;if(check()) ans=mid,r=mid-1;else l=mid+1;}printf("%d\n",ans);return 0;}

 

CodeForces - 645D Robot Rapping Results Report

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.