-
Notifications
You must be signed in to change notification settings - Fork 0
/
1042.cpp
40 lines (36 loc) · 882 Bytes
/
1042.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <iostream>
#include <cstdio>
#include <vector>
#include <string>
using namespace std;
int main()
{
vector<string> cards = { " ","S1","S2","S3","S4","S5","S6","S7","S8","S9","S10","S11","S12","S13" ,
"H1","H2","H3","H4","H5","H6","H7","H8","H9","H10","H11","H12","H13" ,
"C1","C2","C3","C4","C5","C6","C7","C8","C9","C10","C11","C12","C13" ,
"D1","D2","D3","D4","D5","D6","D7","D8","D9","D10","D11","D12","D13" ,
"J1","J2" };
vector<string> res(55);
int round;
scanf("%d", &round);
int shuffTable[55] = { 0 };
for (int i = 0; i < 54; i++)
{
scanf("%d", &shuffTable[i + 1]);
}
while (round--)
{
for (int i = 1; i <= 54; i++)
{
res[shuffTable[i]] = cards[i];
}
cards.assign(res.begin(), res.end());
}
for (int i = 1; i < 55; i++)
{
printf("%s", cards[i].c_str());
if (i != 54)
printf(" ");
}
return 0;
}