zoukankan      html  css  js  c++  java
  • CodeForces

    A 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 ≤ 50000, 0 ≤ 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.
    
    
    Example:

    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.

    思路:

    n对数,前k对差值都为-1,后n-k对差值都为1。


    代码:

    #include <cstdio>
    #include <iostream>
    
    using namespace std;
    
    int main(){
    	int n,k;
    	scanf("%d %d",&n,&k);
    	if(k!=0)printf("%d %d",1,2);
    	for(int i=2 ; i<=k ; i++){
    		printf(" %d %d",i*2-1,i*2);
    	}
    	for(int i=k+1 ; i<=n ; i++){
    		if(k!=0)printf(" ");
    		printf("%d %d",i*2,i*2-1);
    		if(k == 0)printf(" ");
    	}
    	return 0;
    }





  • 相关阅读:
    HashMap和Hashtable及HashSet的区别
    Android获取系统的时间
    Android的布局属性
    ListView 在代码里设置margin
    如何用Vue自己实现一个message提示插件
    JS获取最近三个月日期范围
    css实现表单label文字两端对齐
    my utils
    Vue 路由&组件懒加载(按需加载)
    C# 通过window消息控制指定控件的scroll滚动
  • 原文地址:https://www.cnblogs.com/vocaloid01/p/9514278.html
Copyright © 2011-2022 走看看