博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 3032 Card Trick
阅读量:7283 次
发布时间:2019-06-30

本文共 2050 字,大约阅读时间需要 6 分钟。

Card Trick
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 3224   Accepted: 2354

Description

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.

Input

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

Output

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…

Sample Input

245

Sample Output

2 1 4 33 1 4 5 2

Source

 
 

题意:给你n张牌,让你变一个魔术:第1次把上面的1张牌放到底部,然后最上面的牌就是1,然后拿走1。第2次把上面的2张牌依次放到底部,然后最上面的牌就是2,然后拿走2....重复这个过程,直到所有的牌都被拿走。问一开始的牌应该从上到下怎么放,才能完成这个魔术。

算法:逆向思维,从后向前模拟。不要“下盲棋”,拿几张牌试试就明白了。。。

 

#include
#include
#include
#include
using namespace std;int n;queue
q;void output(){ // 递归输出q里面的内容 int tmp=q.front(); q.pop(); while(!q.empty()) output(); printf("%d ",tmp);}int main(){ //freopen("input.txt","r",stdin); int t; scanf("%d",&t); while(t--){ scanf("%d",&n); int cnt; while(n>0){ q.push(n); cnt=n; n--; while(cnt--){ // 由后向前翻cnt次牌 int tmp=q.front(); q.pop(); q.push(tmp); } } output(); printf("\n"); } return 0;}

 

转载地址:http://zbkjm.baihongyu.com/

你可能感兴趣的文章
css中position属性值的区别
查看>>
计蒜客 蓝桥杯模拟 瞬间移动 dp
查看>>
手动删除oracle数据库
查看>>
Oracle 启动失败报错“TNS-12555: TNS:permission denied”解决办法
查看>>
this指针/常函数、常对象
查看>>
Jmeter获取redis数据
查看>>
电子书,电子图书馆网址大全
查看>>
List中的get(i)
查看>>
整数N分解,搭积木,离散数学中的母函数,ZOJ(1163)
查看>>
mysql删除数据库文件ibdata1后引发的故障
查看>>
ansible笔记(3):ansible模块的基本使用
查看>>
7.2 main函数
查看>>
Foundation HTML5 Canvas中的2处错误
查看>>
chcapter 11 熵和信息
查看>>
GFS文件系统
查看>>
面向对象数据库NDatabase_初识
查看>>
HDU1319 POJ1595 UVA406 UVALive5490 ZOJ1312 Prime Cuts【素数筛选+打表】
查看>>
事务的特性及事务的隔离级别(转)
查看>>
转:如何正确彻底删除webpack 全局或是局部?
查看>>
【Python】Symbol Review
查看>>