• 河南省第六届大学生程序设计竞赛 : Card Trick(模拟)


    http://acm.zzuli.edu.cn/problem.php?id=1486

    题目描述

    The magician shuffles a small pack of cards, holds it face down and performs the following procedure:

    1. The top card is moved to the bottom of the pack. The new top card is dealt face up onto the table. It is the Ace of Spades. 

    2. Two cards are moved one at a time from the top to the bottom. The next card is dealt face up onto the table. It is the Two of Spades. 

    3. Three cards are moved one at a time… 

    4. This goes on until the nth and last card turns out to be the n of Spades.

    This impressive trick works if the magician knows how to arrange the cards beforehand (and knows how to give a false shuffle). Your program has to determine the initial order of 



    the cards for a given number of cards, 1 ≤ n ≤ 13.

    输入

    On the first line of the input is a single positive integer k, telling the number of test cases to follow. 1 ≤ k ≤ 10  Each case consists of one line containing the integer n.  1 ≤ n ≤ 13

    输出

    For each test case, output a line with the correct permutation of the values 1 to n, space separated. The first number showing the top card of the pack, etc…

    样例输入 Copy

    2
    4
    5

    样例输出 Copy

    2 1 4 3
    3 1 4 5 2

    题意分析:

    一副扑克牌,要拿一张放在末尾,第一张牌是1,把1拿走,

    再拿出两张牌放在末尾,第一张牌是2,把2拿走,

    再拿出三张牌放在末尾,第一张牌是3,把3拿走,

    ..................

    以此类推,问最开始牌的顺序是什么。

    解题思路:

    反着来想,第一张牌是n,从末尾拿出n张牌放在上面,

    现在第一张牌是n-1,从末尾拿出n-1张牌放在上面,

    ................

    以此类推。

    #include <stdio.h>
    #include <string.h>
    #define N 1020
    int a[N];
    int main()
    {
    	int T,n,i,m,j;
    	scanf("%d", &T);
    	while(T--){
    		memset(a , 0 , sizeof(a));
    		scanf("%d", &n);
    		m = n;
    		j = 0;
    		while(m >= 1){
    			a[j++] = m;
    			for(i = 0; i < m; i++){
    				a[j] = a[j- (n-m) ];
    				j++;
    			}	
    			m--;
    		}
    		for(i = j-1; i>=j-n; i--)
    			printf("%d ", a[i]);
    		printf("
    "); 
    	}
    	return 0;
    } 
    
  • 相关阅读:
    由@Convert注解引出的jackson对枚举的反序列化规则
    List.contains()与自动拆箱
    Utf-8+Bom编码导致的读取数据部分异常问题
    ResouceUtils.getFile()取不到Jar中资源文件源码小结
    Java自动装箱中的缓存原理
    Javaconfig形式配置Dubbo多注册中心
    logback多环境配置
    Spring @Scheduled @Async联合实现调度任务(2017.11.28更新)
    Nginx的Access日志记录的时机
    Mysql索引引起的死锁
  • 原文地址:https://www.cnblogs.com/zyq1758043090/p/11852756.html
Copyright © 2020-2023  润新知