英文长度很长,有点不想翻译,但是马上就要考试了,所以还是自己翻译吧。

Shuffling is a procedure used to randomize a deck of playing cards.

洗牌是一道程序常用于随机玩牌,

词汇积累:casinos 赌场

Because standard shuffling techniques are seen as weak, and in order to avoid “inside jobs” where employees collaborate with gamblers by performing inadequate shuffles, many casinos employ automatic shuffling machines. Your task is to simulate a shuffling machine.

因为标准洗牌技术看起来是一种缺陷,并且目的避免内部工作,雇佣人员合作赌博者执行不充足洗牌.许多赌场雇佣自动洗牌及其,你的任务是模拟一个洗牌机器。

The machine shuffles a deck of 54 cards according to a given random order and repeats for a given number of times. It is assumed that the initial status of a card deck is in the following order:

机器洗54张卡组,根据跟定的任意序列以及重复的给定次数的数字,推测一个初步的下列的卡牌顺序。

S1, S2, ..., S13,
H1, H2, ..., H13,
C1, C2, ..., C13,
D1, D2, ..., D13,
J1, J2

where “S” stands for “Spade”, “H” for “Heart”, “C” for “Club”, “D” for “Diamond”, and “J” for “Joker”. A given order is a permutation of distinct integers in [1, 54]. If the number at the i-th position is j, it means to move the card from position i to position j. For example, suppose we only have 5 cards: S3, H5, C1, D13 and J2. Given a shuffling order {4, 2, 5, 3, 1}, the result will be: J2, H5, D13, S3, C1. If we are to repeat the shuffling again, the result will be: C1, H5, S3, J2, D13.

S代表了 蜘蛛 ,H代表红桃,C代表俱乐部,J代表节课,给定的序列是一个无重复的54个数字范围的序列,如果数字在第i位置是j,意味着移动数字从i到j,举个例子,假设我们只有五个卡片,S3,H5,C1,D13和J2,给定一个洗牌顺序[[4,2,5,3,1],结果将会是[J2,H5,D13,S3,C1],如果我们重复这个洗牌顺序,这个结果1将会是C1,H5,S3,J2,D13

Input Specification:

输入规格

Each input file contains one test case. For each case, the first line contains a positive integer K (≤20) which is the number of repeat times. Then the next line contains the given order. All the numbers in a line are separated by a space.

每个输入文件包含一个测试样例,针对每个样例,第一行包含正整数K<20,它是一个重复的数字,然后我们接下来一行包含给定的数列,所有的数字在一行,由空格隔开.

Output Specification:

输出规格

For each test case, print the shuffling results in one line. All the cards are separated by a space, and there must be no extra space at the end of the line.

输出规格,针对1每个测试样例,我们答应洗牌结果,在一行,所有的派,有空格隔开,而且必须行尾没有空格。

Sample Input:

2
36 52 37 38 3 39 40 53 54 41 11 12 13 42 43 44 2 4 23 24 25 26 27 6 7 8 48 49 50 51 9 10 14 15 16 5 17 18 19 1 20 21 22 28 29 30 31 32 33 34 35 45 46 47

Sample Output:

S7 C11 C10 C12 S1 H7 H8 H9 D8 D9 S11 S12 S13 D10 D11 D12 S3 S4 S6 S10 H1 H2 C13 D2 D3 D4 H6 H3 D13 J1 J2 C1 C2 C3 C4 D1 S5 H5 H11 H12 C6 C7 C8 C9 S2 S8 S9 H10 D5 D6 D7 H4 H13 C5

核心思路

不会stl库,不会存储这五十二张牌,还有就是取模不是很熟练,我竟然想不到取模这种运算,两个数组想到了,但是1没有想到转化为代码,先将数据倒到temp里,然后用temp倒回s里就行了。

完整代码方法1

#include<iostream>
using namespace std;
int main()
{int i,j,k,l;string s[54];for(int i = 0;i<52;i++){j = i/13;if(j==0) s[i]+='S';else if(j==1) s[i]+='H';else if(j==2) s[i]+='C';else s[i]+= 'D';s[i]+= to_string(i%13+1);}s[52]="J1";s[53] = "J2";//初始化int K,gowhere[54];cin >>K;for(i=0;i<54;i++){cin >> gowhere[i];}//输入while(K--){string temp[54];for(i=0;i<54;i++){temp[gowhere[i]-1] = s[i];}for(i=0;i<54;i++)s[i] = temp[i];}for(i=0;i<54;i++){if(i) cout << " ";cout << s[i];}
}

测试效果

C++翻译A1042 Shuffling题解相关推荐

  1. Codeforces Round #646 (Div. 2)E. Tree Shuffling 题解(dfs)

    题目链接 题目大意 给你一颗树,每一个节点有一个a[i],b[i],c[i]值,你要把b[i]变成c[i],b[i]和c[i]为[0,1],你操作的方法是,选择一个节点x,选择他的k个子树,然后进行交 ...

  2. 解决TiKV节点JBD2进程I/O占用高的问题

    今天事情甚多,草草写一篇,尽量赶在1点之前休息. 问题 我们的TiDB集群上线以来,所有TiKV节点的所有磁盘I/O Util指标总是偏高,大多数时候在50%以上,极端情况下接近90%.集群采用的阿里 ...

  3. 《剑指Offer》题解与笔记(Java实现)

    Coding Interviews 3.1 找出数组中重复的数字 3.2 不修改数组找出重复的数字 4 二维数组中的查找 5 替换空格 6 从尾到头打印链表 7 重建二叉树 8 二叉树的下一个节点 9 ...

  4. 【晴神宝典刷题路】codeup+pat 题解索引(更新ing

    记录一下每天的成果,看多久能刷完伐 codep pat乙级 pat甲级 c2 c/c++快速入门 <算法笔记>2.2小节--C/C++快速入门->顺序结构 例题1-1-1 按要求输出 ...

  5. 【置顶】【PAT】PAT甲级题目及分类总结(持续更新ing)

    在2019年3月底,我决定考浙大计院,经过一个月还算凑合的学习,痛定思痛,决定整理整理自己的博客. 粗略估计,大概一个月的时间里我AC了31道题,大概用时40个小时上下,毕竟还要把大部分时间花在笔试上 ...

  6. CF1109D Sasha and Interesting Fact from Graph Theory

    CF1109D Sasha and Interesting Fact from Graph Theory 这个 \(D\) 题比赛切掉的人基本上是 \(C\) 题的 \(5,6\) 倍...果然数学计 ...

  7. 【CF949D】Curfew(贪心)

    [CF949D]Curfew(贪心) 题面 CF 洛谷 破池姐姐翻译好强啊 题解 今天菊开讲这题,我大力猜想一波说肯定从中间有个分界线,他还说可能是假的 大力贪心就好了,从两边往中间考虑,只要这个房间 ...

  8. 《剑指 Offer I》刷题笔记 20 ~ 30 题

    <剑指 Offer I>刷题笔记 20_30 动态规划(简单) 20. 斐波那契数列 _解法1:迭代 解法2:记忆化递归 解法3:动态规划 21. 青蛙跳台阶问题 _解法1:动态规划 22 ...

  9. [二分查找] [luoguP3500] [POI2010] TES-Intelligence Test

    题目描述 One of the tasks in the Byteotian Intelligence Test (BIT) is to cross out numbers from an initi ...

最新文章

  1. wsl子系统添加开机启动任务
  2. 知道这些面试技巧,让你的测试求职少走弯路
  3. 【IT笔试面试题整理】堆栈和队列
  4. DOM基础操作(二)
  5. IT桔子分布式项目1
  6. java version 和javac版本不一致_windows安裝多個版本的jdk,解決java-version和javac-version版本不一致的問題...
  7. 从零开始学 Kotlin 之「2」数据类型
  8. 二分+BFS——刺杀大使(洛谷 P1902)
  9. 【flink】Flink 1.12.2 源码浅析 : Task数据输入
  10. 普通话转粤语_语音转文字评测:几款语音转文字app,你了解多少?
  11. vector添加元素java_在Java中的Vector中间添加元素
  12. 干货 | 语音识别类产品细分及其应用场景
  13. css画饼状图圆形,CSS样式圆形饼图百分比
  14. Linux系统为docker配置镜像加速器
  15. 电商后台管理系统技术总结(黑马)
  16. 我卖掉北京 500 万的房子,在老家生活的这两年…
  17. jQuery.Revealing图片展示插件
  18. 关于周期性学习率(Cyclical Learning Rate, CLR)
  19. mbk文件导入到oracle,linux下启动oracle
  20. 前阿里P8甩我一份内部SpringCloud笔记手册,真香

热门文章

  1. 低功耗蓝牙模块到底是什么?
  2. 教你架设安全的交换机系统
  3. python去重保留最大值_Python碎碎念
  4. 台式计算机显示器发蓝,电脑屏幕颜色偏蓝的四种解决方法
  5. 如何禁止删除文件,如何防止文件夹被删除?
  6. Centos Nvidia连接失败 NVIDIA-SMI has failed because it couldn‘t communicate with the NVIDIA driver 解决方案
  7. 你知道吗? Linux之父 Linus Torvalds 的10个有趣的事情
  8. Qt for android 出现‘KHR/khrplatform.h‘ file not found
  9. 如何申请企业邮箱,收费企业邮箱有什么用途?
  10. iOS——Charles使用教程移动端