A common pastime for poker players at a poker table is to shuffle stacks of chips. Shuffling chips is performed by starting with two stacks of poker chips, S1 and S2, each stack containing C chips. Each stack may contain chips of several different colors.
The actual shuffle operation is performed by interleaving a chip from S1 with a chip from S2 as shown below for C = 5:
The single resultant stack, S12, contains 2 * C chips. The bottommost chip of S12 is the bottommost chip from S2. On top of that chip, is the bottommost chip from S1. The interleaving process continues taking the 2nd chip from the bottom of S2 and placing that on S12, followed by the 2nd chip from the bottom of S1 and so on until the topmost chip from S1 is placed on top of S12.
After the shuffle operation, S12 is split into 2 new stacks by taking the bottommost C chips from S12 to form a new S1 and the topmost C chips from S12 to form a new S2. The shuffle operation may then be repeated to form a new S12.
For this problem, you will write a program to determine if a particular resultant stack S12 can be formed by shuffling two stacks some number of times.
2 4 AHAH HAHA HHAAAAHH 3 CDE CDE EEDDCC
1 2 2 -1
给出两组牌的花色,和混合后的花色,问需要几步,无法完成为-1.
思路:
模拟整个过程,判断无法完成,为重新发牌后的花色和初始花色一样。
代码:
#include <iostream>
#include <string>
#include <queue>
#include <cstring>
using namespace std;
char en[202];
char ss[202];
char ee[202];
char o1[101],o2[101];
int t,f;
void he(int k)
{
int j=0;
for(int i=0;i<k;i++)
{
ee[j++]=o2[i];
ee[j++]=o1[i];
}
}
void fen(int k,char oo[202])
{ int i;
for(i=0;i<k;i++)
{
o1[i]=oo[i];
}
for(int j=0;i<2*k;i++)
{
o2[j++]=oo[i];
}
}
int bfs(int k,char b1[],char b2[])
{
strcpy(o1,b1);
strcpy(o2,b2);
strcpy(en,ee);
while(1)
{
he(k);
t++;
if(!strcmp(ee,en)){f=1;break;}
fen(k,ee);
if(!strcmp(o1,b1)&&!strcmp(o2,b2)){break;}
}
if(f)cout<<t<<endl;
else cout<<-1<<endl;
}
int main()
{int n;
cin>>n;
for(int i=0;i<n;i++)
{int k;
char b1[101],b2[101];
cin>>k>>b1>>b2>>ee;
t=0;f=0;
cout<<i+1<<" ";
bfs(k,b1,b2);
}
return 0;
}