CodeForces - 263C (判环)

Description:

One day Vasya came up to the blackboard and wrote out n distinct integers from 1 to n in some order in a circle. Then he drew arcs to join the pairs of integers (a, b) (a ≠ b), that are either each other's immediate neighbors in the circle, or there is number c, such that a and с are immediate neighbors, and band c are immediate neighbors. As you can easily deduce, in the end Vasya drew 2·n arcs.

For example, if the numbers are written in the circle in the order 1, 2, 3, 4, 5(in the clockwise direction), then the arcs will join pairs of integers (1, 2), (2, 3), (3, 4), (4, 5), (5, 1), (1, 3), (2, 4), (3, 5), (4, 1) and (5, 2).

Much time has passed ever since, the numbers we wiped off the blackboard long ago, but recently Vasya has found a piece of paper with 2·n written pairs of integers that were joined with the arcs on the board. Vasya asks you to find the order of numbers in the circle by these pairs.

Input

The first line of the input contains a single integer n (5 ≤ n ≤ 105) that shows, how many numbers were written on the board. Next 2·n lines contain pairs of integers aibi (1 ≤ ai, bi ≤ nai ≠ bi) — the numbers that were connected by the arcs.

It is guaranteed that no pair of integers, connected by a arc, occurs in the input more than once. The pairs of numbers and the numbers in the pairs are given in the arbitrary order.

Output

If Vasya made a mistake somewhere and there isn't any way to place numbers from 1 to n on the circle according to the statement, then print a single number "-1" (without the quotes). Otherwise, print any suitable sequence of n distinct integers from 1 to n.

If there are multiple solutions, you are allowed to print any of them. Specifically, it doesn't matter which number you write first to describe the sequence of the order. It also doesn't matter whether you write out the numbers in the clockwise or counter-clockwise direction.

Examples

Input

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

Output

1 2 3 4 5 

Input

6
5 6
4 3
5 3
2 4
6 1
3 1
6 2
2 5
1 4
3 6
1 2
4 5

Output

1 2 4 5 3 6 

给出n个点和2n调边,求出一个顺序是可以连成一个环而且相隔一个数也可以连成一个环,

给出两个点,第三个点和它们都相连说明这个点在给出点的两侧,一旦确定三个以上的点,方向就固定了,每次都可以确定出唯一的点。

AC代码:

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<vector>
#include<stdlib.h>
#include<queue>
#include<set>
#include<iomanip>
#include<math.h>
using namespace std;
typedef long long ll;
typedef double ld;
const int INF = 0x3f3f3f3f;
vector<int> e[200010],ans;
map<int,bool> vis[200010];
bool mark[200010];
int n;
int main()
{
    scanf("%d",&n);
    for(int i=0; i<2*n; i++)
    {
        int x,y;
        scanf("%d %d",&x,&y);
        e[x].push_back(y);
        e[y].push_back(x);
        vis[x][y]=true;
        vis[y][x]=true;
    }
    for(int i=1; i<=n; i++)
        if(e[i].size()!=4)
        {
            printf("-1\n");
            return 0;
        }
    int x=1,y=1;
    for(int i=0; i<n; i++)
    {
        bool flag=false;
        mark[x]=true;//这个点已经遍历过
        ans.push_back(x);
        for(int j=0; j<4; j++)
        {
            int num=0;
            int cur=e[x][j];
            for(int k=0; k<4; k++)
                if(vis[x][e[cur][k]])
                    num++;
            if(num>1&&!mark[cur]&&vis[y][cur])
            {
                y=x;
                x=cur;
                flag=true;
                break;
            }
        }
        if(!flag&&i+1!=n)
        {
            printf("-1\n");
            return 0;
        }
    }
    for(int i=0; i<n; i++)
        printf("%d ",ans[i]);
    printf("\n");
    return 0;
}

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值