-
Notifications
You must be signed in to change notification settings - Fork 449
/
CF129B.c
59 lines (55 loc) · 804 Bytes
/
CF129B.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//codeforces 129B
//students and shoelaces
#include<bits/stdc++.h>
using namespace std;
#define lli long long int
#define ll long long
int main()
{
int n,m;
cin>>n>>m;
vector<vector<int>>a(n+1);
vector<int>b(n+1,0);
for(int i=0;i<m;i++)
{
int x,y;
cin>>x>>y;
a[x].push_back(y);
a[y].push_back(x);
b[x]++;
b[y]++;
}
queue<int>q;
for(int i=1;i<n+1;i++)
{
if(b[i]==1)
q.push(i);
}
if(q.empty()){
cout<<0;
return 0;
}
int cnt=0;
while(!q.empty())
{
while(!q.empty())
{
int tp = q.front();
b[tp]--;
for(int i=0;i<a[tp].size();i++)
{
b[a[tp][i]]--;
}
q.pop();
}
for(int i=1;i<n+1;i++)
{
if(b[i]==1)
{
q.push(i);
}
}
cnt++;
}
cout<<cnt;
}