The rotation game uses a # shaped board, which can hold 24 pieces of square blocks (see Fig.1). The blocks
are marked with symbols 1, 2 and 3, with exactly 8 pieces of each kind.
Initially, the blocks are placed on the board randomly. Your task is to move the blocks so that the eight blocks
placed in the center square have the same symbol marked. There is only one type of valid move, which is to
rotate one of the four lines, each consisting of seven blocks. That is, six blocks in the line are moved towards
the head by one block and the head block is moved to the end of the line. The eight possible moves are
marked with capital letters A to H. Figure 1 illustrates two consecutive moves, move A and move C from
some initial configuration.
Input
The input consists of no more than 30 test cases. Each test case has only one line that contains 24 numbers,
which are the symbols of the blocks in the initial configuration. The rows of blocks are listed from top to
bottom. For each row the blocks are listed from left to right. The numbers are separated by spaces. For
example, the first test case in the sample input corresponds to the initial configuration in Fig.1. There are no
blank lines between cases. There is a line containing a single `0' after the last test case that ends the input.
Output
For each test case, you must output two lines. The first line contains all the moves needed to reach the final
configuration. Each move is a letter, ranging from `A' to `H', and there should not be any spaces between the
letters in the line. If no moves are needed, output `No moves needed' instead. In the second line, you must
output the symbol of the blocks in the center square after these moves. If there are several possible solutions,
you must output the one that uses the least number of moves. If there is still more than one possible solution,
you must output the solution that is smallest in dictionary order for the letters of the moves. There is no need
to output blank lines between cases.
Sample Input
1 1 1 1 3 2 3 2 3 1 3 2 2 3 1 2 2 2 3 1 2 1 3 3
1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3
0

Sample Output
AC
2
DDHH
2

解题报告

比较基础的IDA*,启发函数就是每次最多只能恢复一个...

代码比较挫(旋转那完全是人工。。。)

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int s[];
int maxd;
char ans[]; bool input(){
scanf("%d",&s[]);
if(s[] == ) return false;
for(int i = ;i<=;++i)
scanf("%d",&s[i]);
return true;
} void ope(int i,int * d){
int ch;
if (i == )
{
ch = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = ch;
}
else if(i == )
{
ch = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = ch;
}
else if(i == )
{
ch = d[];
for(int i = ;i>=;--i)
d[i] = d[i-];
d[] = ch;
}
else if(i == )
{
ch = d[];
for(int i = ;i>=;--i)
d[i] = d[i-];
d[] = ch;
}
else if(i == )
{
ch = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = ch;
}
else if(i == )
{
ch = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[] = d[];
d[]= d[];
d[] = d[];
d[] = ch;
}
else if(i == )
{
ch = d[];
for(int i = ;i<=;++i)
d[i] = d[i+];
d[] = ch;
}
else if(i == )
{
ch = d[];
for(int i = ;i<=;++i)
d[i] = d[i+];
d[] = ch;
} } bool dfs(int d,int *t,int tid){
if (d == maxd)
{
if (t[] != tid || t[] != tid) return false;
for(int i = ;i<=;++i)
if(t[i] != tid)
return false;
for(int i = ;i<=;++i)
if(t[i] != tid)
return false;
return true;
}
int co = ;
if (t[] != tid ) co ++;
if (t[] != tid) co ++;
for(int i = ;i<=;++i)
if(t[i] != tid)
co ++;
for(int i = ;i<=;++i)
if(t[i] != tid)
co ++;
if (co + d > maxd) return false;
for(int i = ;i<;++i)
{
int nt[];
memcpy(nt,t,sizeof(nt));
ope(i,nt);
ans[d] = i + 'A';
if (dfs(d+,nt,tid)) return true;
} return false;
} int main(int argc,char * argv[]){
freopen("in.txt","r",stdin);
freopen("out.txt","w",stdout);
int targetid,outid;
char outans[];
while(input())
{
for(int i = ;;++i)
{
int ok = ;
maxd = i ;
for(int j = ;j<=;++j)
if (dfs(,s,j))
{
ok++;
if (ok == )
{
outid = j;
memcpy(outans,ans,sizeof(outans));
} if (ok >= )
{
int check = ;
for(int i = ;i<maxd;++i)
if(outans[i] > ans[i])
{
check = ;
break;
}
else if(outans[i] < ans[i])
break;
if(check)
{
memcpy(outans,ans,sizeof(outans)); outid = j;
} }
}
if(ok)
break; }
if (maxd == )
cout << "No moves needed" << endl << outid << endl;
else
{
outans[maxd] = '\0';
cout << outans << endl << outid << endl;
}
} return ;
}

UVA_Rotation Game<旋转游戏> UVA 1343的更多相关文章

  1. UVa 1343 旋转游戏(dfs+IDA*)

    https://vjudge.net/problem/UVA-1343 题意:如图所示,一共有8个1,8个2和8个3,如何以最少的移动来使得中间8个格子都为同一个数. 思路:状态空间搜索问题. 用ID ...

  2. 09_Sum游戏(UVa 10891 Game of Sum)

    问题来源:刘汝佳<算法竞赛入门经典--训练指南> P67 例题28: 问题描述:有一个长度为n的整数序列,两个游戏者A和B轮流取数,A先取,每次可以从左端或者右端取一个或多个数,但不能两端 ...

  3. UVA 1343 The Rotation Game

    题意: 给出图,往A-H方向旋转,使中间8个格子数字相同.要求旋转次数最少,操作序列字典序尽量小. 分析: 用一维数组存24个方格.二维数组代表每个方向对应的7个方格.IDA*剪枝是当8-8个方格中重 ...

  4. POJ 3752 字母旋转游戏

    问题描述: 给定两个整数M,N,生成一个M*N的矩阵,矩阵中元素取值为A至Z的26个字母中的一个,A在左上角,其余各数按顺时针方向旋转前进,依次递增放置,当超过26时又从A开始填充.例如,当M=5,N ...

  5. uva 1343 非原创

    uva1343 原作者 题目题意是:给你的棋盘,在A-H方向上可以拨动,问你最少拨动几次可以是中心图案的数字一致 解题思路:回溯法,剪枝 其中要把每次拨动的字母所代表的位置提前用数组表示: 然后在如果 ...

  6. UVA - 1343 The Rotation Game (BFS/IDA*)

    题目链接 紫书例题. 首先附上我第一次bfs+剪枝TLE的版本: #include<bits/stdc++.h> using namespace std; typedef long lon ...

  7. 【例 7-12 UVA - 1343】The Rotation Game

    [链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 迭代加深搜索. 每次抽动操作最多只会让中间那一块的区域离目标的"距离"减少1. 以这个作为剪枝. 枚举最大深度. ...

  8. UVa 1343 The Rotation Game (状态空间搜索 && IDA*)

    题意:有个#字型的棋盘,2行2列,一共24个格. 如图:每个格子是1或2或3,一共8个1,8个2,8个3. 有A~H一共8种合法操作,比如A代表把A这一列向上移动一个,最上面的格会补到最下面. 求:使 ...

  9. UVA 1343 - The Rotation Game-[IDA*迭代加深搜索]

    解题思路: 这是紫书上的一道题,一开始笔者按照书上的思路采用状态空间搜索,想了很多办法优化可是仍然超时,时间消耗大的原因是主要是: 1)状态转移代价很大,一次需要向八个方向寻找: 2)哈希表更新频繁: ...

随机推荐

  1. 【czy系列赛】czy的后宫4 && bzoj1925 [Sdoi2010]地精部落

    [问题描述] czy有很多妹子,妹子虽然数量很多,但是质量不容乐观,她们的美丽值全部为负数(喜闻乐见). czy每天都要带N个妹子到机房,她们都有一个独一无二的美丽值,美丽值为-1到-N之间的整数.他 ...

  2. c++中可以对类中私有成员中的静态变量初始化吗?

    转载http://www.cnblogs.com/carbs/archive/2012/04/04/2431992.html 问题:我看的书上写的对私有部分的访问可以是公共部分的成员函数,也可以是友员 ...

  3. Linux环境 Mysql新建用户和数据库并授权

    测试环境:linux 和Mysql 5.5.35 一.新建用户 //登录Mysql@>mysql -u root -p@>密码//创建用户mysql> insert into mys ...

  4. 如何实现 iOS 自定义状态栏

    给大家介绍如何实现 iOS 自定义状态栏 Sample Code: 01 UIWindow * statusWindow = [[UIWindow alloc] initWithFrame:[UIAp ...

  5. RDBMS 数据库补丁集补丁号码高速參考-文档 ID 1577380.1

    保存此文,高速查询补丁号 Oracle Database - Enterprise Edition - 版本号 8.1.7.0 和更高版本号 本文档所含信息适用于全部平台 补丁集/PSU 补丁号码   ...

  6. LDA-线性判别分析(二)

    本来是要调研 Latent Dirichlet Allocation 的那个 LDA 的, 没想到查到很多关于 Linear Discriminant Analysis 这个 LDA 的资料.初步看了 ...

  7. Hacker(九)----黑客攻防前准备1

    黑客在入侵Internet中其他电脑之前,需要做一系列准备工作,包括在电脑中安装虚拟机.准备常用的工具软件及掌握常用的攻击方法. 一.在计算机中搭建虚拟环境 无论时攻击还是训练,黑客都不会拿实体计算机 ...

  8. flashback database操作步骤

    默认情况数据库的flashback database是关闭的. 启用Flashback Database 步骤:1.配置Flash Recovery Area 检查是否启动了flash recover ...

  9. SQLLoader4(数据文件中的列与表中列不一致情况-filler)

    A.数据文件中字段个数少于表中列字段个数,但数据文件中缺少的列,在表定义中可以为空.----- 这种情况是比较简单的,只需要将数据文件中数据对应的列的名字写到控制文件中即可.因为SQL*Loader是 ...

  10. Ubuntu自定义命令

    回到主文件夹 $ cd ~ 建立.bash_aliases $ touch .bash_aliases $ vim .bash_aliases 在此文件中加入一句话: alias cdlauncher ...