Road Construction
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 5657
Accepted: 2800
Description
It's almost summer time, and that means that it's almost summer construction time! This year, the good people who are in charge of the roads on the tropical island paradise of Remote Island would like to repair and upgrade the various roads that lead between
the various tourist attractions on the island.
The roads themselves are also rather interesting. Due to the strange customs of the island, the roads are arranged so that they never meet at intersections, but rather pass over or under each other using bridges and tunnels. In this way, each road runs between
two specific tourist attractions, so that the tourists do not become irreparably lost.
Unfortunately, given the nature of the repairs and upgrades needed on each road, when the construction company works on a particular road, it is unusable in either direction. This could cause a problem if it becomes impossible to travel between two tourist
attractions, even if the construction company works on only one road at any particular time.
So, the Road Department of Remote Island has decided to call upon your consulting services to help remedy this problem. It has been decided that new roads will have to be built between the various attractions in such a way that in the final configuration,
if any one road is undergoing construction, it would still be possible to travel between any two tourist attractions using the remaining roads. Your task is to find the minimum number of new roads necessary.
Input
The first line of input will consist of positive integers
n and
r, separated by a space, where 3 ≤
n ≤ 1000 is the number of tourist attractions on the island, and 2 ≤
r ≤ 1000 is the number of roads. The tourist attractions
are conveniently labelled from 1 to
n. Each of the following
r lines will consist of two integers,
v and
w, separated by a space, indicating that a road exists between the attractions labelled
v and
w.
Note that you may travel in either direction down each road, and any pair of tourist attractions will have at most one road directly between them. Also, you are assured that in the current configuration, it is possible to travel between any two tourist attractions.
Output
One line, consisting of an integer, which gives the minimum number of roads that we need to add.
Sample Input
Sample Input 1
10 12
1 2
1 3
1 4
2 5
2 6
5 6
3 7
3 8
7 8
4 9
4 10
9 10
Sample Input 2
3 3
1 2
2 3
1 3
Sample Output
Output for Sample Input 1
2
Output for Sample Input 2
0
Source
CCC 2007
======================================================================================================
给定无向图,求至少需要连多少条边可以使无向图双联通(边双联通),思路:求割边,缩点,设缩点后的无向树中有tot个叶子节点,可以证明:(tot+1)div 2就是答案。
Code:
program poj3352;
const
MaxN=1000;
var
g,Ecut:array[1..MaxN,1..MaxN] of boolean;
mark,dep,low,du,fa:array[1..MaxN] of longint;
Pcut:array[1..MaxN] of boolean;
root,n,m:longint;
function Min(a,b:longint):longint;
begin
if ai) then low[u]:=Min(low[u],dep[i]);
if mark[i]=0 then begin
Dfs(i,u,depth+1);
inc(tot);
low[u]:=Min(low[u],low[i]);
if ((tot>1)and(u=root))or((low[i]>=dep[u])and(u<>root)) then Pcut[u]:=true;
if low[i]>dep[u] then begin
Ecut[u,i]:=true;
Ecut[i,u]:=true;
end;
end;
end;
mark[u]:=2;
end;
procedure Scan;
var i,a,b:longint;
begin
fillchar(g,sizeof(g),false);
fillchar(Ecut,sizeof(Ecut),false);
fillchar(Pcut,sizeof(Pcut),false);
fillchar(mark,sizeof(mark),0);
fillchar(du,sizeof(du),0);
fillchar(fa,sizeof(fa),0);
readln(n,m);
for i:=1 to m do begin
readln(a,b);
g[a,b]:=true;
g[b,a]:=true;
end;
end;
function f(x:longint):longint;
begin
if fa[x]=0 then exit(x)
else begin
fa[x]:=f(fa[x]);
exit(fa[x]);
end;
end;
procedure Process;
var i,j,tot:longint;
begin
for root:=1 to n do
if mark[root]=0 then
dfs(root,0,0);
for i:=1 to n do
for j:=i+1 to n do
if (g[i,j])and(not Ecut[i,j])and(f(i)<>f(j)) then begin
fa[f(i)]:=f(j);
//writeln('Merge'+#32,i,#32,j);
end;
for i:=1 to n do
for j:=i+1 to n do
if Ecut[i,j] then begin
inc(du[f(i)]);
inc(du[f(j)]);
//writeln('Ecut'+#32,i,#32,j);
end;
tot:=0;
for i:=1 to n do
if (f(i)=i)and(du[i]=1) then
inc(tot);
writeln((tot+1)shr 1);
end;
procedure Main;
begin
Scan;
Process;
end;
begin
assign(input,'poj3352.in'); reset(input);
assign(output,'poj3352.out'); rewrite(output);
Main;
close(input); close(output);
end.