Shuffling Machine (20)

Shuffling Machine (20)
这道题,还是看不懂英文,真是硬伤。翻译过来就懂了。
很简单,其实用结构体更好一些。考的是数据结构感觉跟算法没什么关系。用两个数组来存改变前的和已经改变的。写了一个方法来简单点的初始化,不然真的很恶心。没什么说的。

#include
using namespace std;
string a[100];
string La[100];//用来保存仍未移动的 
void Set(char c,int st)
{
     
 for(int i =1 ;i<14;i++)
 {
     
  La[st]=a[st]=c;
   
  if(i<10)
   La[st]=a[st]+=i+'0';
  else 
  {
     
   La[st]=a[st]+='1';
   La[st]=a[st]+=i%10+'0';
  }
  a[st++];
 }
}
int main()
{
     
 Set('S',1);
 Set('H',14);
 Set('C',27);
 Set('D',40);
 La[53] = a[53] = "J1";La[54] = a[54] = "J2";
 
 int re;
 int arr[100];//洗牌规则 
 cin>>re;
 for(int i = 1;i<55;i++)
 {
     
  cin>>arr[i];
 } 
 for(int i = 0 ;i<re;i++)
 {
     
  for(int j = 1;j<55;j++)
  {
     
   int x = arr[j];
   a[x] = La[j];
  }
  for(int j=1;j<55;j++)
   La[j] = a[j];
 }
 for(int i=1;i<55;i++)
  if(i==1)
   cout<<La[i];
  else 
   cout<<" "<<La[i];
} 

你可能感兴趣的:(PAT,蓝桥杯,算法,算法)