首页 > 代码库 > 【BZOJ1718】&&【POJ3177】Redundant Paths
【BZOJ1718】&&【POJ3177】Redundant Paths
1718: [Usaco2006 Jan] Redundant Paths 分离的路径
Time Limit: 5 Sec Memory Limit: 64 MBSubmit: 452 Solved: 239
[Submit][Status][Discuss]
Description
In order to get from one of the F (1 <= F <= 5,000) grazing fields (which are numbered 1..F) to another field, Bessie and the rest of the herd are forced to cross near the Tree of Rotten Apples. The cows are now tired of often being forced to take a particular path and want to build some new paths so that they will always have a choice of at least two separate routes between any pair of fields. They currently have at least one route between each pair of fields and want to have at least two. Of course, they can only travel on Official Paths when they move from one field to another. Given a description of the current set of R (F-1 <= R <= 10,000) paths that each connect exactly two different fields, determine the minimum number of new paths (each of which connects exactly two fields) that must be built so that there are at least two separate routes between any pair of fields. Routes are considered separate if they use none of the same paths, even if they visit the same intermediate field along the way. There might already be more than one paths between the same pair of fields, and you may also build a new path that connects the same fields as some other path.
Input
* Line 1: Two space-separated integers: F and R * Lines 2..R+1: Each line contains two space-separated integers which are the fields at the endpoints of some path.
Output
* Line 1: A single integer that is the number of new paths that must be built.
Sample Input
1 2
2 3
3 4
2 5
4 5
5 6
5 7
Sample Output
HINT
Source
Gold
/*To The End Of The Galaxy*/ #include<cstdio> #include<cstdlib> #include<iostream> #include<cstring> #include<algorithm> #include<queue> #include<iomanip> #include<bitset> #include<stack> #include<map> #include<set> #include<cmath> #include<complex> #define debug(x) cerr<<#x<<"="<<x<<endl #define INF 0x7f7f7f7f #define llINF 0x7fffffffffffll using namespace std; typedef pair<int,int> pii; typedef long long ll; inline int init() { int now=0,ju=1;char c;bool flag=false; while(1) { c=getchar(); if(c==‘-‘)ju=-1; else if(c>=‘0‘&&c<=‘9‘) { now=now*10+c-‘0‘; flag=true; } else if(flag)return now*ju; } } inline long long llinit() { long long now=0,ju=1;char c;bool flag=false; while(1) { c=getchar(); if(c==‘-‘)ju=-1; else if(c>=‘0‘&&c<=‘9‘) { now=now*10+c-‘0‘; flag=true; } else if(flag)return now*ju; } } struct edge { int from,to,val,pre; }Edge[20005]; int head[5005],instack[5005],dfs_time,dfn[5005],low[5005]; int eccnumber,bel[5005]; int du[5005]; stack<int> s; int topt,n,m,cnt; map<pii,int> mp; inline void addedge(int from,int to,int val) { ++cnt; Edge[cnt]=((edge){from,to,val,head[from]}); head[from]=cnt; } void tarjan(int now,int fa) { dfn[now]=low[now]=++dfs_time; s.push(now);instack[now]=1; for(int j=head[now];j;j=Edge[j].pre) { if(!dfn[Edge[j].to]) { tarjan(Edge[j].to,now); low[now]=min(low[now],low[Edge[j].to]); } else if(instack[Edge[j].to]&&fa!=Edge[j].to) { low[now]=min(low[now],dfn[Edge[j].to]); } } if(dfn[now]==low[now]) { ++eccnumber; while(1) { topt=s.top();s.pop(); instack[topt]=false; bel[topt]=eccnumber; if(topt==now)break; } } } inline void rebuild() { for(int i=1;i<=cnt;i+=2) { if(bel[Edge[i].from]!=bel[Edge[i].to]&&!mp[make_pair(bel[Edge[i].from],bel[Edge[i].to])]) { mp[make_pair(bel[Edge[i].from],bel[Edge[i].to])]=1; du[bel[Edge[i].from]]++;du[bel[Edge[i].to]]++; } } } int main() { int a,b; n=init();m=init(); for(int i=1;i<=m;i++) { a=init();b=init(); addedge(a,b,1); addedge(b,a,1); } for(int i=1;i<=n;i++) { if(!dfn[i]) { tarjan(i,0); } } rebuild(); int ans=0; for(int i=1;i<=n;i++) { if(du[i]==1) { ans++; } } ans++; printf("%d\n",ans/2); return 0; }
【BZOJ1718】&&【POJ3177】Redundant Paths