标签:数组 ring esc question out 现在 color void 等于
第一行一个数T(T ≤ 100),表示数据组数。对于每组数据,第一行两个数n,k(1 ≤ n,k ≤ 100),接下来一行有2n个数a1,a2,...,a2n(1 ≤ ai ≤ 1000000000)。表示原始牌组从上到下的序列。
对于每组数据,输出一行,最终的序列。数字之间用空格隔开,不要在行末输出多余的空格。
3 3 1 1 2 3 4 5 6 3 2 1 2 3 4 5 6 2 2 1 1 1 1
1 4 2 5 3 6 1 5 4 3 2 6 1 1 1 1
1 import java.util.Scanner; 2 3 /** 4 * 每次读取一个数之后,算出他经过k次洗牌后的位置,只用一个长度为2n数组用来输出 5 * 根据当前数的位置,可以算出经过一次洗牌后的位置 6 * 如果当前数小于等于n(即在左手),则他下次出现的位置是 2*当前位置-1 7 * 如果当前位置大于n(即在右手),则他下次出现的位置是 2*(当前位置 - n) 8 9 */ 10 public class Main { 11 public static void main(String[] args) { 12 Scanner sc = new Scanner(System.in); 13 int groups = sc.nextInt(); 14 while (groups-- > 0){ 15 int n = sc.nextInt(); 16 int k = sc.nextInt(); 17 int[] res = new int[2*n]; 18 for(int i=0;i<2*n;i++){ 19 int tmp = i + 1; 20 for(int j = 0; j < k;j++){ 21 if (tmp <= n) tmp = 2*tmp - 1; 22 else tmp = 2 * (tmp - n); 23 } 24 res[tmp - 1]=sc.nextInt(); 25 } 26 //输出 27 if(res.length> 0) System.out.print(res[0]); 28 for(int i = 1;i< 2*n;i++){ 29 System.out.print(" "+res[i]); 30 } 31 System.out.println(); 32 } 33 } 34 }
标签:数组 ring esc question out 现在 color void 等于
原文地址:https://www.cnblogs.com/the-wang/p/8979451.html