pat00-自测5. Shuffling Machine (20)

00-自测5. Shuffling Machine (20)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
作者
CHEN, Yue

Shuffling is a procedure used to randomize a deck of playing cards. 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:

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.

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.

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.

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

提交代码

 

 1 #include <cstdio>
 2 #include <cstring>
 3 #include <string>
 4 #include <queue>
 5 #include <cmath>
 6 #include <iostream>
 7 using namespace std;
 8 char f[5]={'S','H','C','D','J'};
 9 int main(){
10     //freopen("D:\\INPUT.txt","r",stdin);
11     int time;
12     scanf("%d",&time);
13     int card1[55],card2[55],i,j;
14     for(i=0;i<=54;i++){
15         card1[i]=i;
16     }
17     int order[55];
18     for(i=1;i<=54;i++){
19         scanf("%d",&order[i]);
20     }
21     for(i=1;i<=time;i++){
22         for(j=1;j<=54;j++){
23             card2[order[j]]=card1[j];
24         }
25         for(j=1;j<=54;j++){
26             card1[j]=card2[j];
27         }
28     }
29     printf("%c%d",f[(card1[1]-1)/13],card1[1]%13==0?13:card1[1]%13);
30     for(i=2;i<=54;i++){
31         printf(" %c%d",f[(card1[i]-1)/13],card1[i]%13==0?13:card1[i]%13);
32     }
33     printf("\n");
34     return 0;
35 }

 

转载于:https://www.cnblogs.com/Deribs4/p/4716788.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/375651.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

E488: Trailing characters:

情景&#xff1a; 对vim进行配置&#xff0c;配置完成后进行保存&#xff0c;配置完成后打开其他文件时报错。原因&#xff1a; vim 配置文件中保存不合乎语法的语句&#xff0c;报错时如下&#xff1a; #显示行号 set number#字符导致的错误&#xff0c;改成"即可。 vi…

移动web开发总结

1、-webkit-tap-highlight-color:rgba(255,255,255,0)可以同时屏蔽ios和android下点击元素时出现的阴影。 备注&#xff1a;transparent的属性值在android下无效。2、-webkit-appearance:none可以同时屏蔽输入框怪异的内阴影。3,/*去除android浏览器下a/input等元素获得焦点时高…

人物角色群体攻击判定二(叉乘来判断敌人的位置)

建议阅读: 判断敌人在玩家的某一个区域: http://www.cnblogs.com/plateFace/p/4716799.html 我们可以根据玩家和敌人的坐标, 进行叉乘来获取一个向量可以用它来判断敌人的位置, 敌人是否在攻击范围内. 下面我简单实现下对单体敌人是否攻击做判定 这种方式有一种重大的BUG, 假设…

更改linux子系统软件源为国内镜像

cd /etc/apt/sudo cp sources.list sources.list.back20190831sudo vim sources.list执行vim替换命令 :%s/archive.ubuntu/mirrors.aliyun/g:%s/security.ubuntu/mirrors.aliyun/g执行sudo apt update即可。

[Z] Linux下进程的文件访问权限

原文链接&#xff1a;http://blog.csdn.net/chosen0ne/article/details/10581883对进程校验文件访问权限包括两个部分&#xff0c;一是确定进程的角色&#xff08;属于哪个用户或者组&#xff09;&#xff0c;二是确定对应的角色是否具有该操作的权限。 首先看第一部分。默认情…

HDU 5371 Manacher Hotaru's problem

求出一个连续子序列&#xff0c;这个子序列由三部分ABC构成&#xff0c;其中AB是回文串&#xff0c;A和C相同&#xff0c;也就是BC也是回文串。 求这样一个最长的子序列。 Manacher算法是在所有两个相邻数字之间插入一个特殊的数字&#xff0c;比如-1&#xff0c; Manacher算法…

MySQL CURDATE() 函数

定义和用法 CURDATE() 函数返回当前的日期。 语法 CURDATE() 实例 例子 1 下面是 SELECT 语句&#xff1a; SELECT NOW(),CURDATE(),CURTIME() 结果类似&#xff1a; NOW()CURDATE()CURTIME()2008-12-29 16:25:462008-12-2916:25:46例子 2 下面的 SQL 创建带有日期时间列 (Orde…

平庸技术流,用 WebApi +AngularJS 实现网络爬虫

最近园子里网络爬虫很火爆&#xff0c;从 PHP 到 Python&#xff0c;从 windows服务 到 winform 程序&#xff0c;各路大神各显神通。小弟也献下丑&#xff0c;从平庸流出发&#xff0c;简述下 WebApi AngularJS 方式实现网络爬虫。 一、技术框架 1.1 前端&#xff1a; Angular…

linker `cc` not found

运行rustc hello_world.rs时出错。原因&#xff1a; 我的 gcc 是安装的指定版本 gcc-4.8&#xff0c;安装指定版本 gcc 可参考我的另一篇博文&#xff0c;这里找不到 cc 的原因是在移除原来软链的时候&#xff0c;cc 的软链也移除了。重新建立软链即可。 sudo ln -s gcc cc还有…

C# 通过服务启动窗体(把窗体添加到服务里)实现用户交互的windows服务[转发]...

由于个人需要&#xff0c;想找一个键盘记录的程序&#xff0c;从网上下载了很多&#xff0c;多数都是需要注册的&#xff0c;另外也多被杀软查杀。于是决定自己写一个&#xff0c;如果作为一个windows应用程序&#xff0c;可以实现抓取键盘的记录。想要实现随系统启动的话&…

error: default argument given for parameter 4

原因&#xff1a;定义函数的时候参数部分有默认值&#xff0c;如下&#xff1a; int classA::print(int a 0) {std::cout << a << std::endl; }分析&#xff1a;声明函数时参数可以有默认值&#xff0c;定义时不能。

python2.7虚拟环境virtualenv安装及使用

一 、虚拟环境virtualenv安装 1. 安装virtualenv 将Python的目录添加到系统环境变量后&#xff0c;在命令行输入&#xff1a; pip install virtualenv C:\Users\heroicai\Desktop>pip install virtualenv2. 建立虚拟环境 在桌面上建立建立一个虚拟环境myenv,输入:virtualenv…

Io 异常: The Network Adapter could not establish the connection

Io 异常: The Network Adapter could not establish the connection 这个异常的出现一般与数据库和你的PC的设置有关 这种异常的出现大致上有下面几种&#xff1a; 1。IP错误。 在设置URL时错误&#xff0c;例如&#xff1a;jdbc:oracle:thin:192.168.0.36:1521:sharp 数据库服…

git 删除tag

git tag -d v1.0如果 tag 已经在远程分支&#xff0c;还需执行一句git push origin :refs/tags/v1.0另&#xff1a;打 tag 的时候最好加上 description&#xff0c;防止出现未知的错误&#xff0c;如 Jenkins 集成的时候生成的包名不对等。

leetcode 的shell部分4道题整理

对shell的某些细节还不是十分熟悉&#xff0c;借鉴了好多别人的东西 1. Word Frequency此题很简单&#xff0c;只要能排序就可以cat words.txt |tr -s " " "\n" sort | unique -c | sort -r | awk {print $2" "$1}2. Valid Phone Numbers cat …

Mysql操作集锦

mysql安装成功后可以看到已经存在mysql、information_schema和test这个几个数据库&#xff0c;information_schema库中有一个名为COLUMNS的表&#xff0c;这个表中记录了数据库中所有表的字段信息。知道这个表后&#xff0c;获取任意表的字段就只需要一条select语句即可。 例如…

shadows a parameter

原因&#xff1a;函数内声明变量与参数名相同。 如&#xff1a; void print(int hello) {int hello;std::cout << hello << std::endl; }解决办法&#xff1a;改变参数参数名或者局部变量名

iOS 9之WatchKit for WatchOS 2

金田&#xff08;github示例源码&#xff09; 自AppleWatch发行的同时就可以为AppWatch开发相应的应用程序&#xff0c;不过最初的版本&#xff0c;能开发的功能极为有限&#xff0c;所以也只是有少数的App厂商为Apple定制了App&#xff0c;所以迄今为止&#xff0c;Apple Stor…

创建响应式布局的10款优秀网格工具集锦

在这篇文章中&#xff0c;我们为您呈现了一组优秀的网格工具清单。如果我们错过了任何没有列出在这个清单上的东西&#xff0c;请分享给我们。如果网页设计和开人员采用了正确的工具集&#xff0c;并基于一个灵活的网格架构&#xff0c;以及能够把响应图像应用到到设计之中&…

expected initializer before

原因&#xff1a;某个地方缺少分号 如&#xff1a; void print(int a) {int b ///wrong herestd::cout << a << std::endl; }解决&#xff1a;重点排查报错行前几行的变量声明等。