CF 129B - Students and Shoelaces

n个人,m对关系。每次能删除当前所有只跟一个人有关系的人,删到不能删要搞多少次。。。map+set不用想什么事,无脑拍就行了。。。

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define FF(i, a, b) for(i=a; ib; i--)
#define CLR(a, b) memset(a, b, sizeof(a))
#define LL long long

using namespace std;

int n, m;
map > s;
set tmp;
set :: iterator iter, it;

int main()
{
    while(~scanf("%d%d", &n, &m))
    {
        s.clear();  
        int a, b, ans = 0, flag = 1;
        while(m--)
        {
            scanf("%d%d", &a, &b);
            s[a].insert(b); s[b].insert(a);
        }
        while(flag)
        {
            flag = 0;   tmp.clear();
            FF(a, 1, n+1)
            {
                int k = s[a].size();
                if(k == 1)
                {
                    flag = 1;
                    tmp.insert(a);
                }
            }
            if(flag)
            {
                for(iter=tmp.begin(); iter!=tmp.end(); iter++)
                {
                    it = s[*iter].begin();
                    s[*it].erase(*iter);
                    s[*iter].clear();
                }
                ans++;
            }
        }
        printf("%d\n", ans);
    }
    return 0;
}


你可能感兴趣的:(乱搞)