您的位置:首页 > 编程语言 > Python开发

PAT Shuffling machine (Python)

2015-06-29 01:05 666 查看
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.
Solution:

def shuffleMac(K,Order):
ls,k,li,tmp,t=[],0,[],[],0
for i in range(1,55):
if i<14:
ls.append("S%d"%i)
elif i<27:
ls.append("H%d"%(i-13))
elif i<40:
ls.append("C%d"%(i-26))
elif i<53:
ls.append("D%d"%(i-39))
elif i==53:
ls.append("J1")
else:
ls.append("J2")
tmp.append(i-1)
li.append(i-1)
order=Order.split()
while k<int(K):
for j in order:
li[int(j)-1]=tmp[t]
t+=1
for m in range(54):
tmp[m]=li[m]
t=0
k+=1
for i in li[:53]:
print ls[i],
print ls[li[53]]

K=raw_input()
Order=raw_input()
shuffleMac(K,Order)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: