博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj3087——Shuffle'm Up(BFS)
阅读量:2343 次
发布时间:2019-05-10

本文共 3291 字,大约阅读时间需要 10 分钟。

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

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

题目其实很简单,模拟切牌的过程,两堆牌s1,s2组合成s12,s1的第一张牌在最顶上。然后再从s12的底部开始,取一半成s1,另一半就是s2,再次组合直到顺序和题目中给出的一样。

模拟一下就好。

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x3f3f3f3f#define MAXN 100005#define Mod 10001using namespace std;string s1,s2,ans;int c;map
step;string shuffle(string a,string b){ string s12; for(int i=0;i
q; q.push(s12); step[s12]=1; while(!q.empty()) { string tmp=q.front(); q.pop(); if(tmp==ans) return step[tmp]; s1=tmp.substr(0,c); s2=tmp.substr(c,c); s12=shuffle(s1,s2); if(step[s12]>0) return -1; step[s12]=step[tmp]+1; q.push(s12); }}int main(){ int t; scanf("%d",&t); for(int cas=1;cas<=t;++cas) { scanf("%d",&c); cin>>s1>>s2>>ans; printf("%d %d\n",cas,bfs()); } return 0;}

转载地址:http://ixcvb.baihongyu.com/

你可能感兴趣的文章
类的常量成员的初始化
查看>>
类成员初始化顺序
查看>>
拷贝构造和赋值函数
查看>>
将类的方法声明为虚函数的作用
查看>>
函数指针
查看>>
进程调度的概念
查看>>
操作系统典型调度算法
查看>>
1.内存管理的概念
查看>>
2.内存覆盖与内存交换
查看>>
3.内存连续分配管理方式
查看>>
C++对象的内存模型
查看>>
C++函数编译原理和成员函数的实现
查看>>
this指针详解
查看>>
static静态成员变量和静态成员函数
查看>>
构造函数的执行顺序
查看>>
二维数组指针
查看>>
逗号表达式
查看>>
迭代器失效
查看>>
常引用
查看>>
变量在内存中的存储
查看>>