CodeForces 359B 构造

C - C
Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit  Status  Practice  CodeForces 359B

Description

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: .

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 Input

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

Hint

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.

由题意我们可以知道,题目要求我们构造一个数列,满足题中所给的条件

根据题目中所给的绝对值的特殊关系,我们不妨构造一个数列让其前2*k项的每两项 后一项都比前一项小1,剩余项每两项

后一项都比前一项大1,则相加后为 k+n-k-|(k-n+k)|==n-n+2*k  恒为2*k  成立

#include
#include
int main()
{   int n,k,i;
    scanf("%d %d",&n,&k);
    for(i=0;i<2*k;i+=2)
    printf("%d %d ",i+2,i+1);
    for(i;i<2*n;i+=2)
    printf("%d %d ",i+1,i+2);
    printf("\n");
    return 0;
}


你可能感兴趣的:(codeforces,思维,各种构造)