poj2524Ubiquitous religions…

来源:互联网 发布:stylus rmx mac 编辑:程序博客网 时间:2024/05/16 00:55
var
  n,m,x,y,i,ans,k:longint;
  f:array[1..50000] of longint;
  h:array[1..50000] of boolean;
function findset(x:longint):longint;
begin
  if x<>f[x] thenf[x]:=findset(f[x]);
  exit(f[x]);
end;
procedure union(x,y:longint);
begin
  x:=findset(x);
  y:=findset(y);
  if x<>y then
    f[x]:=y;
end;
begin
  k:=0;
  while not eof do
  begin
  inc(k);
  read(n,m);
  fillchar(f,sizeof(f),0);
  for i:=1 to n do
    f[i]:=i;
  for i:=1 to m do
    begin
     read(x,y);
     union(x,y);
    end;
  fillchar(h,sizeof(h),false);
  for i:=1 to n do
    begin
     f[i]:=findset(f[i]);
     h[f[i]]:=true;
    end;
  ans:=0;
  for i:=1 to n do
    if h[i] theninc(ans);
  if (n<>0) and (m<>0) then
    writeln('Case ',k,':',ans);
  end;
end.
原创粉丝点击