CodeForces-329C(div1):Graph Reconstruction(随机&构造)

I have an undirected graph consisting of n nodes, numbered 1 through n. Each node has at most two incident edges. For each pair of nodes, there is at most an edge connecting them. No edge connects a node to itself.

I would like to create a new graph in such a way that:

  • The new graph consists of the same number of nodes and edges as the old graph.
  • The properties in the first paragraph still hold.
  • For each two nodes u and v, if there is an edge connecting them in the old graph, there is no edge connecting them in the new graph.

Help me construct the new graph, or tell me if it is impossible.

Input

The first line consists of two space-separated integers: n and m (1 ≤ m ≤ n ≤ 105), denoting the number of nodes and edges, respectively. Then m lines follow. Each of the m lines consists of two space-separated integers u and v (1 ≤ u, v ≤ nu ≠ v), denoting an edge between nodes u and v.

Output

If it is not possible to construct a new graph with the mentioned properties, output a single line consisting of -1. Otherwise, output exactly m lines. Each line should contain a description of edge in the same way as used in the input format.

Examples

Input
8 7
1 2
2 3
4 5
5 6
6 8
8 7
7 4
Output
1 4
4 6
1 6
2 7
7 5
8 5
2 8
Input
3 2
1 2
2 3
Output
-1
Input
5 4
1 2
2 3
3 4
4 1
Output
1 3
3 5
5 2
2 4

题意:给定N点M边的无向简单图,满足每个点最多度数为2。现在叫你重新构图,使得新图满足原来的性质,而且新图的边和原图的边没有相同的。

思路:因为度数最多为2,我们去随机构造一个链(最坏的情况下是个环),如果新图和就图没有交集,则ok。

#include<bits/stdc++.h>
#define pii pair<int,int>
#define mp make_pair
#define f first
#define s second
using namespace std;
const int maxn=1000010;
map<pii,int>ex;
pii p[maxn];
int N,M,ans[maxn];
bool solve()
{
    random_shuffle(ans+1,ans+N+1); ans[0]=ans[N]; int cnt=0;
    for(int i=1;i<=N;i++) 
      if(!ex[mp(ans[i-1],ans[i])]) {
        cnt++; p[cnt]=mp(ans[i-1],ans[i]);
    }
    if(cnt<M) return false;
    return true;
}
int main()
{
    int T,u,v,i,j;
    scanf("%d%d",&N,&M);
    for(i=1;i<=M;i++){
        scanf("%d%d",&u,&v);
        ex[mp(u,v)]=1; ex[mp(v,u)]=1;
    }
    for(i=1;i<=N;i++) ans[i]=i;
    T=10000000/M;
    while(T--){
        if(solve()) {
           for(i=1;i<=M;i++) printf("%d %d\n",p[i].f,p[i].s);
           return 0;
        }
    }
    puts("-1");
    return 0;
}

猜你喜欢

转载自www.cnblogs.com/hua-dong/p/9228509.html