CardTrick
題目描述
The magician shuffles a smallpack of cards, holds it face down and performs the following procedure:
This impressive trick works ifthe magician knows how to arrange the cards beforehand (and knows how to give afalse shuffle). Your program has to determine the initial order of the cardsfor 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…樣例輸入
2 4 5樣例輸出
2 1 4 3 3 1 4 5 2AC代碼:
#include<iostream> #include<cstdio> #include<queue> using namespace std; int main() {int K,n;int i,j,k;int a[15],b[15];while(cin>>K)while(K--){cin>>n;queue<int>qt;for(i=1;i<=n;i++)qt.push(i);for(i=1;i<=n;i++){j=i;while(j--){k=qt.front();qt.pop();qt.push(k);}a[i]=qt.front();qt.pop();}for(i=1;i<=n;i++)b[a[i]]=i;for(i=1;i<n;i++)cout<<b[i]<<" ";cout<<b[i]<<endl;}return 0; }總結
- 上一篇: 【jeecg移动开发能力】表单移动开发能
- 下一篇: UEditor在线编辑器配置及注意事项