HDOJ-三部曲-1001-Flip Game
Flip Game
Time Limit : 2000/1000ms (Java/Other) Memory Limit : 131072/65536K (Java/Other)
Total Submission(s) : 44 Accepted Submission(s) : 17
- Choose any one of the 16 pieces.
- Flip the chosen piece and also all adjacent pieces to the left, to the right, to the top, and to the bottom of the chosen piece (if there are any).
Consider the following position as an example:
bwbw wwww bbwb bwwb Here "b" denotes pieces lying their black side up and "w" denotes pieces lying their white side up. If we choose to flip the 1st piece from the 3rd row (this choice is shown at the picture), then the field will become:
bwbw bwww wwwb wwwb The goal of the game is to flip either all pieces white side up or all pieces black side up. You are to write a program that will search for the minimum number of rounds needed to achieve this goal.
bbwb
bwwb
bwww
//#include<iostream>
//using namespace std;
//int binary(int a[])
//{
// int i,t=1,res=0;
// for(i=1;i<=16;i++)
// {
// res+=a[i]*t;
// t*=2;
// }
// return res;
//}
//void copy(int a[],int b[])
//{
// int i;
// for(i=1;i<=16;i++)
// b[i]=a[i];
//}
//int main()
//{
//
// int i,j,a[17],b[17],t=0,front=0,rear=0,step[65536]={0};
// int **queue=new int*[65536*2];
// for(i=0;i<65536;i++)
// queue[i]=new int[17];
// bool f[65536]={false};
// char sq[4][5];
// step[0]=0;
// for(i=0;i<4;i++)
// {
// cin>>sq[i];
// for(j=0;j<4;j++)
// {
// if(sq[i][j]=='w')
// a[t+j+1]=0;
// else
// a[t+j+1]=1;
// }
// t+=4;
// }
// int tm=binary(a);
// /*for(i=1;i<=16;i++)
// cout<<a[i]<<' ';
// cout<<endl;
// cout<<binary(a)<<endl;*/
// /*cout<<binary(a)<<endl;*/
// if(tm==0||tm==65535)
// {
// cout<<0<<endl;
// return 0;
// }
// f[tm]=true;
// copy(a,queue[rear++]);
// while(front<rear)
// {
// int t=binary(queue[front]);
// copy(queue[front],b);
// for(i=1;i<=16;i++)
// {
// b[i]=1-queue[front][i];
// if(i>4)
// b[i-4]=1-queue[front][i-4];
// if(i<13)
// b[i+4]=1-queue[front][i+4];
// if(i%4!=1)
// b[i-1]=1-queue[front][i-1];
// if(i%4!=0)
// b[i+1]=1-queue[front][i+1];
// int temp=binary(b);
// if(temp==0||temp==65535)
// {
// cout<<step[t]+1<<endl;
// return 0;
// }
// if(!f[temp])
// {
// step[temp]=step[t]+1;
// f[temp]=true;
// copy(b,queue[rear++]);
// }
// }
// front++;
// }
// cout<<"Impossible"<<endl;
// for(i=0;i<65536;i++)
// delete queue[i];
// delete queue;
//} #include<iostream>
using namespace std;
int main()
{
int i,j,a=0,b,t=1,front=0,rear=1,step[65536]={0},queue[65536*2];
bool f[65536]={false};
char sq[5];
for(i=0;i<4;i++)
{
cin>>sq;
for(j=0;j<4;j++)
{
if(sq[j]=='b')
a+=t;
t<<=1;
}
}
if(a==0||a==65535)
{
cout<<0<<endl;
return 0;
}
queue[0]=a;
f[a]=true;
while(front<rear)
{
int t=queue[front];
for(i=0;i<16;i++)
{
b=queue[front];
b^=1<<i;
if(i+1>4)
b^=1<<(i-4);
if(i+1<13)
b^=1<<(i+4);
if((i+1)%4!=1)
b^=1<<(i-1);
if((i+1)%4!=0)
b^=1<<(i+1);
if(b==0||b==65535)
{
cout<<step[t]+1<<endl;
return 0;
}
if(!f[b])
{
step[b]=step[t]+1;
f[b]=true;
queue[rear++]=b;
}
}
front++;
}
cout<<"Impossible"<<endl;
}
HDOJ-三部曲-1001-Flip Game的更多相关文章
- HDOJ三部曲-DP-1017-pearls
Pearls Time Limit : 2000/1000ms (Java/Other) Memory Limit : 20000/10000K (Java/Other) Total Submis ...
- HDOJ(1001) Sum Problem
这一套题做错了几次,按理说直接用等差数列求和公式就行了,主要是要考虑一些运算符的结核性问题: 四则运算符(+.-.*./)和求余运算符(%)结合性都是从左到右. 于是,我自己写了一个版本,主要是考虑( ...
- poj1753 Flip Game
题意:4*4的正方形,每个格子有黑白两面,翻转格子使得4*4个格子显示全黑或全白,翻转要求:选中的那个格子,以及其上下左右相邻的格子(如果存在)要同时翻转.输出最小的达到要求的翻转次数或者Imposs ...
- 杭电hdoj题目分类
HDOJ 题目分类 //分类不是绝对的 //"*" 表示好题,需要多次回味 //"?"表示结论是正确的,但还停留在模块阶 段,需要理解,证明. //简单题看到就 ...
- 贪心 赛码 1001 Movie
题目传送门 /* 贪心:官方题解: 首先我们考虑如何选择最左边的一个区间 假设最左边的区间标号是i, 那选择的另外两个区间的左端点必定要大于Ri 若存在i之外的j, 满足Rj<Ri, 那么另外两 ...
- uva10327 - Flip Sort
Flip Sort Sorting in computer science is an important part. Almost every problem can be solved effec ...
- HDOJ 题目分类
HDOJ 题目分类 /* * 一:简单题 */ 1000: 入门用:1001: 用高斯求和公式要防溢出1004:1012:1013: 对9取余好了1017:1021:1027: ...
- 算法——A*——HDOJ:1813
Escape from Tetris Time Limit: 12000/4000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Othe ...
- HDOJ(HDU).1003 Max Sum (DP)
HDOJ(HDU).1003 Max Sum (DP) 点我挑战题目 算法学习-–动态规划初探 题意分析 给出一段数字序列,求出最大连续子段和.典型的动态规划问题. 用数组a表示存储的数字序列,sum ...
- HDOJ.1009 FatMouse' Trade (贪心)
FatMouse' Trade 点我挑战题目 题意分析 每组数据,给出有的猫粮m与房间数n,接着有n行,分别是这个房间存放的食物和所需要的猫粮.求这组数据能保证的最大的食物是多少? (可以不完全保证这 ...
随机推荐
- HTML5自学笔记[ 20 ]canvas绘图实例之绘制倒影
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8&quo ...
- 如何处理PHP和MYSQL的并发以及优化
sql优化,数据缓存和页面静态化首先各种优化程序逻辑优化数据库优化硬件横向扩展数据hash.服务器提升性能.表hash.出钱找oraclec出解决方案页面静态化:Php页面静态化有两种,第一,php模 ...
- jquery 行交换 上移 下移
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- visual2012 快捷键
代码格式化:Ctrl+K+D 注释:VS2010是(Ctrl+E,C),VS2012是(Ctrl+K, Ctrl+C) 反注释:VS2010是(Ctrl+E,U),VS2012是(Ctrl+K, Ct ...
- VS构建工具介绍
VS构建工具介绍 我们都知道C/C++源代码要生成可执行的.exe程序,需要经过编译.链接的过程.你在VS工具中只需要选择菜单Build或按一下F5可以编译.链接.运行了,其实IDE帮我隐藏了好多的具 ...
- 第四章 CSS基础
1.CSS是cascading style sheets 层叠样式表.样式定义如何显示html元素,通常存储在样式表中,将样式添加到html中,是为了解决内容与表现分离的问题. 2.外部样式表可以极大 ...
- PowerMock使用遇到的问题——1
遇到问题:再用PowerMock Mock构造方法时,所有语句都可以通过执行,但当最后执行verify语句时却总是出现如下错误: java.lang.AssertionError: ...
- [Elasticsearch] 多字段搜索 (三) - multi_match查询和多数字段 <译>
multi_match查询 multi_match查询提供了一个简便的方法用来对多个字段执行相同的查询. NOTE 存在几种类型的multi_match查询,其中的3种正好和在“了解你的数据”一节中提 ...
- EntityFramework之创建数据库及基本操作(一)
那时学EF的时候还没有Code First,只有DB First,生成的是一个EDMX文件,Code First则没有这文件,下面直接上代码吧 数据库创建以及建表 1.首先我们新建一个新项目,使用Nu ...
- 创建ROS功能包(四)
为了方便直接用ROS的create-pkg命令行工具 roscreate-pkg chapter2_tutorials std_msgs rospy roscpp std_msgs 包含了常见的消息类 ...