Description
A common pastime for poker players at a poker table was to shuffle stacks of chips. Shuffling chips is performed by starting with the stacks of poker chips, S1 and S2, each stack containin G C chips. Each of the stacks 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 being Low 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 this 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, fo Llowed by the 2nd chip from the bottom of S1 and so on until the topmost chip from S1 are placed on top O F S12.
After the shuffle operation, S12 are 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 is repeated to form a new S12.
For this problem, you'll write a program to determine if a particular resultant stack S12 can be formed by Shuf Fling stacks some number of times.
Input
The first line of input contains a single integer N, (1≤ N ≤1000) which are the number of datasets that Follow.
Each dataset consists of four lines of input. The first line of a datasets specifies an integerC, (1≤C≤100) which is the number of chips in each initial stack (S1andS2). The second line of each dataset specifies the colors of theCChips in StackS1, starting with the bottommost chip. The third line of each dataset specifies the colors of theCChips in StackS2Starting with the bottommost chip. Colors is expressed as a single uppercase letter (AThroughH). There is no blanks or separators between the chip colors. The fourth line of each dataset contains 2 *CUppercase Letters (AThroughH), representing the colors of the desired result of the shuffling ofS1andS2zero or more times. The bottommost chip ' s color is specified first.
Output
Output for each dataset consists of a displays the dataset number (1 though N), a space, and an The integer value which is the minimum number of shuffle operations required to get the desired resultant stack. If the desired result can is reached using the input for the dataset, display the value negative 1 (−1) for T He number of shuffle operations.
Sample Input
24ahahhahahhaaaahh3cdecdeeeddcc
Sample Output
1 22-1
Problem analysis: According to test instructions simulation can be.
The code is as follows:
1# include<iostream>2# include<cstdio>3# include<map>4# include<string>5# include<cstring>6# include<algorithm>7 using namespacestd;8 stringUnitstringS1,stringS2)9 {Ten stringres=""; One intI=0, j=0, l=s1.size (); A for(intk=0;k<2*l;++k) { - if(k&1) -res+=s1[i++]; the Else -res+=s2[j++]; - } - returnRes; + } - voidSolvestringS1,stringS2,stringSintl) + { Amap<string,int>MP; at intCnt=0; - strings=unit (S1,S2); - while(1){ -++Mp[s]; -++CNT; - if(s==S) { inprintf"%d\n", CNT); - return ; to } +S1=S.SUBSTR (0, L); -S2=s.substr (l,l); thes=unit (S1,S2); * if(mp[s]>=1) $ Break;Panax Notoginseng } -printf"-1\n"); the } + intMain () A { the intt,l,cas=0; + strings1,s2,s; -scanf"%d\n",&T); $ while(t--) $ { -Cin>>l; -Cin>>s1>>s2>>s; theprintf"%d",++CAs); - solve (s1,s2,s,l);Wuyi } the return 0; -}
POJ-3087 Shuffle ' m Up (analog)