题目地址:POJ 3087
题意:已知两堆牌数均为n的纸牌堆a和b的初始状态, 按给定规则能将他们相互交叉组合成一堆牌str,再将str的最底下的n张牌归为a,最顶的n张牌归为b,依此循环下去。现在输入a和b的初始状态 以及 预想的最终状态c,问a, b经过多少次洗牌之后,最终能达到状态c,若永远不可能相同,则输出”-1”。
思路:用map记录一下当前str出现的状态,如果当前的str在前面出现过,那就输出-1,因为无论怎么变换都不会出现终态c。若果没有出现的话就继续洗牌然后分牌,一直到找出为止。
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include <algorithm>
#include <set>
#include <queue>
#include <stack>
#include <map>
#pragma comment(linker, "/STACK:102400000,102400000")
using namespace std;
typedef __int64 LL;
const int inf=0x3f3f3f3f;
const double pi= acos(-1.0);
const double esp=1e-7;
const int Maxn=110;
char a[Maxn],b[Maxn],c[Maxn*2];
char str[Maxn*2];
int main()
{
int T,n,i,j,t;
int icase=1;
int cnt;
scanf("%d",&T);
while(T--) {
map<string,int >mp;
memset(str,0,sizeof(str));
mp.clear();
scanf("%d",&n);
scanf("%s %s %s",a,b,c);
mp[c]=1;
cnt=0;
for(;;) {
t=0;
for(i=0; i<n; i++) {
str[t++]=b[i];
str[t++]=a[i];
}
cnt++;
if(!strcmp(str,c)) {
printf("%d %d\n",icase++,cnt);
break;
}
if(mp[str]) {
printf("%d -1\n",icase++);
break;
}
mp[str]=1;
for(j=0; j<n; j++)
a[j]=str[j];
for(j=0; j<n; j++)
b[j]=str[j+n];
}
}
return 0;
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
POJ 3087-Shuffle'm Up(map+模拟)
时间: 2024-10-11 09:26:49