mcfx's blog

题解、Writeup、游记和碎碎念

Codeforces 723E. One-Way Reform

There are n cities and m two-way roads in Berland, each road connects two cities. It is known that there is no more than one road connecting each pair of cities, and there is no road which connects the city with itself. It is possible that there is no way to get from one city to some other city using only these roads.

The road minister decided to make a reform in Berland and to orient all roads in the country, i.e. to make each road one-way. The minister wants to maximize the number of cities, for which the number of roads that begins in the city equals to the number of roads that ends in it.

有一个无向图,nn 个点,mm 条边,无自环,无重边,现在要给每个边定方向,使得入度等于出度的点最多。

Input

The first line contains a positive integer t (1 ≤ t ≤ 200) — the number of testsets in the input.

Each of the testsets is given in the following way. The first line contains two integers n and m (1 ≤ n ≤ 200, 0 ≤ m ≤ n·(n - 1) / 2) — the number of cities and the number of roads in Berland.

The next m lines contain the description of roads in Berland. Each line contains two integers u and v (1 ≤ u, v ≤ n) — the cities the corresponding road connects. It's guaranteed that there are no self-loops and multiple roads. It is possible that there is no way along roads between a pair of cities.

It is guaranteed that the total number of cities in all testset of input data doesn't exceed 200.

Pay attention that for hacks, you can only use tests consisting of one testset, so t should be equal to one.

Output

For each testset print the maximum number of such cities that the number of roads that begins in the city, is equal to the number of roads that ends in it.

In the next m lines print oriented roads. First print the number of the city where the road begins and then the number of the city where the road ends. If there are several answers, print any of them. It is allowed to print roads in each test in arbitrary order. Each road should be printed exactly once.

Example

input

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

output

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

Solution

将度数为奇的边间连上边,然后每次从任一点出发,走过一条边就定为走的方向,直到回到出发点。当所有边被定向后停止操作 那么对于度数为偶数的边,其入度一定等于出度,输出时去掉新加的边。

Code

#include<bits/stdc++.h>

struct edge
{
    int to,ne;
    bool v;
}e[50000];

int p[201],em=2,deg[201],n,m;
bool ok[50000];

inline void add(int a,int b,bool v)
{
    e[em].to=b,e[em].v=v,e[em].ne=p[a],p[a]=em++;
}

inline void solve()
{
    scanf("%d%d",&n,&m);
    em=2;
    memset(p,0,n*4+4);
    memset(deg,0,n*4+4);
    while(m--)
    {
        int a,b;
        scanf("%d%d",&a,&b);
        add(a,b,1);
        add(b,a,1);
        deg[a]++;
        deg[b]++;
    }
    int lst=0,ans=n;
    for(int i=1;i<=n;i++)
        if(deg[i]&1)
        {
            if(lst)
                add(i,lst,0),add(lst,i,0),deg[i]++,deg[lst]++;
            else
                lst=i;
            ans--;
        }
    memset(ok,0,em);
    lst=1;
    printf("%d\n",ans);
    while(1)
    {
        while(lst<=n&&!deg[lst])lst++;
        if(lst>n)break;
        int k=lst;
        while(1)
        {
            bool f=1;
            for(int i=p[k];i;i=e[i].ne)
                if(!ok[i])
                {
                    f=0,ok[i]=1,ok[i^1]=1;
                    if(e[i].v)printf("%d %d\n",k,e[i].to);
                    deg[k]--;
                    deg[e[i].to]--;
                    k=e[i].to;
                    break;
                }
            if(f)break;
        }
    }
}

int main()
{
    int T;
    scanf("%d",&T);
    while(T--)solve();
}

日期: 2016-10-03

标签: Codeforces 图论

这是一篇旧文,原始文章及评论可在 https://oldblog.mcfx.us/archives/47/ 查看。