1. 程式人生 > >codeforces 723E. One-Way Reform

codeforces 723E. One-Way Reform

possible ces ica nsis using section guarantee logs print

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.

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

給一個n個點m條邊的圖,將這些雙向邊改為單向邊,盡量使出度等於入度的點多,輸出所有邊的方向。

對於度為奇數的點的數量一定為偶數,編號為1,。。。,k

將1-2,3-4,。。。,k-1-k連一條邊

它就變成了一個歐拉回路,因此,我們可以dfs對於圖中原有的邊輸出經過的方向,而且入度真正等於出度的點只有度數為偶數的點。

#include<cstdio>
#include<cstring>
const int N=205;
struct X
{
    int v,n,f;
    bool vis,re;
}x[80005];
int s,d[N],j[N],v[N];
void add(int u,int v,bool re)
{
    x[++s].n=x[u].f;
    x[x[u].f=s].v=v;
    x[s].re=re;
}
void dfs(int u)
{
    v[u]=1;
    for(int i=x[u].f;i;i=x[i].n)
        if(!x[i].vis)
        {
            x[i].vis=x[i^1].vis=1;
            if(x[i].re) printf("%d %d\n",u,x[i].v);
            dfs(x[i].v);
        }
}
int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        int n,m,ct=0,ans=0;s=1;
        scanf("%d%d",&n,&m);
        memset(x,0,sizeof(x));
        memset(d,0,sizeof(d));
        memset(v,0,sizeof(v));
        for(int i=1;i<=m;++i)
        {
            int u,v;
            scanf("%d%d",&u,&v);
            add(u,v,1),add(v,u,1);
            ++d[u];++d[v];
        }
        for(int i=1;i<=n;++i)
            if(d[i]&1) j[++ct]=i;
            else ++ans;
        printf("%d\n",ans);
        for(int i=1;i<ct;i+=2)
            add(j[i],j[i+1],0),add(j[i+1],j[i],0);
        for(int i=1;i<=n;++i)
            if(!v[i]) dfs(i);
    }
    return 0;
}

codeforces 723E. One-Way Reform