Codeforces Round #183 (Div. 2) C

來源:互聯網
上載者:User

 

思維題,想到就秒殺,沒想到或者想錯方向了那麼就完蛋了

0 1 2 3 4 

1 2 3 4 0

你就會發現是可以的。

我經曆了很久錯誤的思維,找到了一些性質

1.  ai+bi的和一定為一串從(n/2)遞增的序列, 因為所有ai+bi(i從0-n-1)的和為一個固定的數,而得到的ci又要是0-n-1各一次。 所以也同時說明偶數的情況是不可行的。

然後稍加組合就可以發現將兩個 0-n-1 的序列錯開相加就可以得到結果。。

C. Lucky Permutation Tripletime 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.

Sample test(s)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.

 

#include <iostream>#include <stdio.h>#include <string.h>using namespace std;int g[100100];int g1[100100];int main(){    int n;    scanf("%d",&n);    if(n%2==0) printf("-1");    else    {        int cnt=0;        for(int i=n/2;i<n;i++)            g[cnt++]=i;        for(int i=0;i<n/2;i++)            g[cnt++]=i;        for(int i=0;i<n;i++)            g1[i]=(g[i]+i)%n;        for(int i=0;i<n;i++)            printf("%d ",i);        printf("\n");        for(int i=0;i<n;i++)            printf("%d ",g[i]);        printf("\n");        for(int i=0;i<n;i++)            printf("%d ",g1[i]);    }    return 0;}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.