Permutation  CodeForces 359B

本博客探讨了如何生成长度为2n的排列,其中包含特定的约束条件,即排列中每一对相邻数的绝对差之和等于给定的整数k。通过实例分析和代码实现,详细解释了解决此问题的策略。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Permutation
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

permutation p is an ordered group of numbers p1,   p2,   ...,   pn, consisting of n distinct positive integers, each is no more than n. We'll define number n as the length of permutation p1,   p2,   ...,   pn.

Simon has a positive integer n and a non-negative integer k, such that 2k ≤ n. Help him find permutation a of length 2n, such that it meets this equation: Permutation <wbr> <wbr>CodeForces <wbr>359B.

Input

The first line contains two integers n and k (1 ≤ n ≤ 500000 ≤ 2k ≤ n).

Output

Print 2n integers a1, a2, ..., a2n — the required permutation a. It is guaranteed that the solution exists. If there are multiple solutions, you can print any of them.

Sample test(s)
input

1 0
output

1 2
input

2 1
output

3 2 1 4
input

4 0
output

2 7 4 6 1 3 5 8
Note

Record |x| represents the absolute value of number x

In the first sample |1 - 2| - |1 - 2| = 0.

In the second sample |3 - 2| + |1 - 4| - |3 - 2 + 1 - 4| = 1 + 3 - 2 = 2.

In the third sample |2 - 7| + |4 - 6| + |1 - 3| + |5 - 8| - |2 - 7 + 4 - 6 + 1 - 3 + 5 - 8| = 12 - 12 = 0.


当两个相邻的数是递增的时候,这两个数对K是没有影响的。
所以只要找到几个递减的数对,他们的差之和等于K就行了。


#include

#include

#include

using namespace std;



int main()

{

    int n, k;

    int sum = 0;

    scanf("%d%d", &n, &k);

    int l = 1;

    int r = 2 * n;

    int mid = 0;

    

    while ((r - l) <= k)

    {

        k = k - (r - l);

        printf("%d ", r);

        r++;

        printf("%d ", l);

        l++;

        sum++;

        if (sum < n)printf(" ");

        else printf("\n");

    }

    if (k != 0)

    {

        mid = r-k;

        k = 0;

        printf("%d ", r);

        r--;

        printf("%d", mid);

        sum++;

        if (sum < n)printf(" ");

        else printf("\n");

    }

    while (l < r)

    {

        if (l == mid) l++;

        if (r == mid) r--;

        printf("%d %d", l, r);

        sum++;

        if (sum < n)printf(" ");

        else printf("\n");

        l++;

        r--;

    }

    return 0;

    

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值