Codeforces 303A Lucky Permutation Triple【思维】

A. Lucky Permutation Triple
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Bike is interested in permutations. A permutation of length n is an integer sequence such that each integer from 0 to (n - 1) appears exactly once in it. For example, [0, 2, 1] is a permutation of length 3 while both [0, 2, 2] and [1, 2, 3] is not.

A permutation triple of permutations of length n (a, b, c) is called a Lucky Permutation Triple if and only if . The sign ai denotes the i-th element of permutation a. The modular equality described above denotes that the remainders after dividing ai + bi by n and dividing ci by n are equal.

Now, he has an integer n and wants to find a Lucky Permutation Triple. Could you please help him?

Input

The first line contains a single integer n (1 ≤ n ≤ 105).

Output

If no Lucky Permutation Triple of length n exists print -1.

Otherwise, you need to print three lines. Each line contains n space-seperated integers. The first line must contain permutation a, the second line — permutation b, the third — permutation c.

If there are multiple solutions, print any of them.

Examples
Input
5
Output
1 4 3 2 0
1 0 2 4 3
2 4 0 1 3
Input
2
Output
-1
Note

In Sample 1, the permutation triple ([1, 4, 3, 2, 0], [1, 0, 2, 4, 3], [2, 4, 0, 1, 3]) is Lucky Permutation Triple, as following holds:

  • ;
  • ;
  • ;
  • ;
  • .

In Sample 2, you can easily notice that no lucky permutation triple exists.


题目大意:

给你一个序列长度N,让你找合法的三个集合,使得集合A和集合B对应位子相加和对应位子集合C中的数同余。

如果存在解,输出任意一个,否则输出-1.


思路:


1、暴力代码跑了一波,发现N是奇数的无解。

那么如果N是奇数,直接输出-1即可。


2、那么如果N是偶数,我们直接将数值相加岔开即可。

即:

if(n==5)

0+1=1

1+2=3

2+3=0

3+4=2

4+0=4

即我们让0+1,1+2,2+3,3+4,4+5...................n-1+0即可。


Ac代码:

#include<stdio.h>
#include<string.h>
using namespace std;
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        if(n%2==0)
        {
            printf("-1\n");
            continue;
        }
        for(int i=0;i<n;i++)
        {
            printf("%d ",i);
        }
        printf("\n");
        for(int i=1;i<n+1;i++)
        {
            printf("%d ",i%n);
        }
        printf("\n");
        for(int i=0;i<n;i++)
        {
            printf("%d ",(i+(i+1)%n)%n);
        }
        printf("\n");
    }
}





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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值