vijos1325 桐桐的糖果计划

时间:2021-08-16 14:56:15

Description

桐桐是一个快乐的小朋友,他生活中有许多许多好玩的事,让我们一起来看看吧……

桐桐很喜欢吃棒棒糖。他家处在一大堆糖果店的附近。

但是,他们家的区域经常出现塞车、塞人等情况,这导致他不得不等到塞的车或人走光了他才能去买到他最爱吃的棒棒糖品种。于是,他去找市长帮他修路,使得每两个糖果店之间至少有两条完全不同的路。可是市长经费有限,于是让桐桐找出哪些路被塞住后会使某些糖果店与糖果店间无法到达及最少的修路条数。你能帮助他吃到他最喜爱的糖果吗?

注:1->3->2  和 1->3->4->2 为不完全不同的路,即不符合题意的路。

1->3->4->2 和 1->5->2 为完全不同的路,即符合题意的路。

Input

输入第一行是两个数n,m(n<=5000,m<=10000)

接下来的m行,每行两个数i,j,表示i,j间有一条边连接。

Output

输出有两行。第一行为塞住后就不可以到达某些糖果店的道路条数,第二行为最少的修路条数。

   1   2   3
+---+---+
| |
| |
6 +---+---+ 4
/ 5
/
/
7 +

上图是样例所表示的一个图。 下图是改变后的图,其中虚线表示应连接的边。

   1   2   3
+---+---+
: | |
: | |
6 +---+---+ 4
/ 5 :
/ :
/ :
7 + - - - -

Sample Input

7 7
1 2
2 3
3 4
2 5
4 5
5 6
5 7

Sample Output

3
2
 
 
 
今天突然想复习一下tarjan
这题写的很明白,就是找环的个数,根据题目描述,判断环就行了
我写的很麻烦,dalao们写的比我好多了..
#include<cstdio>
#include<iostream>
#include<vector>
#include<stack>
#include<cstring>
using namespace std;
int head[],num[],low[],vis[],cstack[],belong[],in[],step=,count=;
struct map
{
int a;
int b;
};
map map1[];
stack<int>mstack;
void make(int i,int x,int y)
{
map1[i].a=y;
map1[i].b=head[x];
head[x]=i;
}
bool choose(int x,int y)
{
if((x&)!=&&y==x+)
return true;
if((x&)==&&y==x-)
return true;
return false;
}
void tarjan(int v,int e)
{
int i,j,l,u;
step++;
num[v]=step;
low[v]=step;
vis[v]=;
cstack[v]=;
mstack.push(v);
for(i=head[v];i;i=map1[i].b)
{
if(choose(i,e)==)
continue;
l=map1[i].a;
if(vis[l]==)
{
tarjan(l,i);
low[v]=min(low[v],low[l]);
}
else
if(cstack[l])
low[v]=min(low[v],num[l]);
}
if(low[v]==num[v])
{
count++;
do
{
u=mstack.top();
mstack.pop();
belong[u]=count;
cstack[u]=;
}while(u!=v);
}
}
int main()
{
int n,m,x,y,count1=;
int i,j;
scanf("%d%d",&n,&m);
for(i=;i<=m;i++)
{
scanf("%d%d",&x,&y);
make(i*-,x,y);
make(i*,y,x);
}
for(i=;i<=n;i++)
if(vis[i]==)
tarjan(i,-);
printf("%d\n",count-);
for(i=;i<=n;i++)
for(j=head[i];j;j=map1[j].b)
if(belong[i]!=belong[map1[j].a])
in[belong[i]]++;
for(i=;i<=count;i++)
if(in[i]==)
count1++;
if((count1-)/+==)
cout<<"";
else
printf("%d",(count1-)/+);
}