Shuffle'm Up
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 10766   Accepted: 4976

Description

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 S2and 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.

Input

The first line of input contains a single integer N, (1 ≤ N ≤ 1000) which is the number of datasets that follow.

Each dataset consists of four lines of input. The first line of a dataset specifies an integer C, (1 ≤ C ≤ 100) which is the number of chips in each initial stack (S1 and S2). The second line of each dataset specifies the colors of each of the C chips in stack S1, starting with the bottommost chip. The third line of each dataset specifies the colors of each of the C chips in stack S2 starting with the bottommost chip. Colors are expressed as a single uppercase letter (A through H). There are no blanks or separators between the chip colors. The fourth line of each dataset contains 2 * C uppercase letters (A through H), representing the colors of the desired result of the shuffling of S1 and S2 zero or more times. The bottommost chip’s color is specified first.

Output

Output for each dataset consists of a single line that displays the dataset number (1 though N), a space, and an integer value which is the minimum number of shuffle operations required to get the desired resultant stack. If the desired result can not be reached using the input for the dataset, display the value negative 1 (−1) for the number of shuffle operations.

Sample Input

2
4
AHAH
HAHA
HHAAAAHH
3
CDE
CDE
EEDDCC

Sample Output

1 2
2 -1

Source

这实际上是一个模拟题啊,怎么在搜索里面呢
 #include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm> using namespace std; int main()
{
int n,cc;
char a[],b[],c[];
char result[];
int cou=;
scanf("%d",&n);
for(int i=;i<n;i++){
int j;
scanf("%d",&cc);
scanf("%s",a);
scanf("%s",b);
scanf("%s",result);
for(j=;j<cc*;j++){//注意最多循环cc*2次就会恢复第一次的序列
cou=;
for(int k=;k<cc;k++){
c[cou++]=b[k];
c[cou++]=a[k];
}
c[cou]='\0';
int ans=strcmp(c,result);
if(ans==){
printf("%d %d\n",i+,j+);
break;
}
for(int l=;l<cc;l++){
a[l]=c[l];
b[l]=c[l+cc];
}
}
if(j==cc*){
printf("%d %d\n",i+,-);
}
}
return ;
}

最新文章

  1. button、label、textfield、页面跳转、传值
  2. 我的Logo设计简史
  3. BZOJ2844: albus就是要第一个出场
  4. iscroll 使用及遇到的问题
  5. Charles的使用
  6. yii 验证器和验证码
  7. 从创建webservice到发布webservice的一些相关总结
  8. redis 学习笔记一
  9. [置顶] Android图片异步加载之Android-Universal-Image-Loader
  10. 素数槽csuoj
  11. Spring MVC处理(下周完善)
  12. 4.5管道实现机制和模拟构建管道「深入浅出ASP.NET Core系列」
  13. 折半、快排、插入排序的Java实现
  14. Vultr服务器端口
  15. tar压缩/解压用法
  16. 用NI的数据采集卡实现简单电子测试之2——绘制三极管输出特性曲线(面)图
  17. JDBC详解(一)
  18. Mastering the game of Go with deep neural networks and tree search浅析
  19. ssm所需要的pom(jre8、tomcat8、spring4)
  20. JavaScript编写学生查询系统

热门文章

  1. html提交表单到Servlet
  2. java/javac命令行如何同时引用多个包;错误 TypeError: &#39;JavaPackage&#39; object is not callable 的含义
  3. 如何在一小时内更新100篇文章?-Evernote Sync插件介绍
  4. Can&#39;t connect to MySQL server (10065)
  5. win7&amp;win10 右键添加 cmd
  6. 关联规则挖掘算法之Apriori算法
  7. 【ThinkPHP】解析ThinkPHP5创建模块
  8. 理解 CI 和 CD 之间的区别(翻译)
  9. Effective Java 第三版—— 90.考虑序列化代理替代序列化实例
  10. Select逻辑顺序图