Description

Farmer John knows that an intellectually satisfied cow is a happy cow who will give more milk. He has arranged a brainy activity for cows in which they manipulate an M × N grid (1 ≤ M ≤ 15; 1 ≤ N ≤ 15) of square tiles, each of which is colored black on one side and white on the other side.

As one would guess, when a single white tile is flipped, it changes to black; when a single black tile is flipped, it changes to white. The cows are rewarded when they flip the tiles so that each tile has the white side face up. However, the cows have rather large hooves and when they try to flip a certain tile, they also flip all the adjacent tiles (tiles that share a full edge with the flipped tile). Since the flips are tiring, the cows want to minimize the number of flips they have to make.

Help the cows determine the minimum number of flips required, and the locations to flip to achieve that minimum. If there are multiple ways to achieve the task with the minimum amount of flips, return the one with the least lexicographical ordering in the output when considered as a string. If the task is impossible, print one line with the word "IMPOSSIBLE".

Input

Line 1: Two space-separated integers: M and N
Lines 2..
M+1: Line
i+1 describes the colors (left to right) of row i of the grid with
N space-separated integers which are 1 for black and 0 for white

Output

Lines 1..
M: Each line contains
N space-separated integers, each specifying how many times to flip that particular location.

Sample Input

4 4
1 0 0 1
0 1 1 0
0 1 1 0
1 0 0 1

Sample Output

0 0 0 0
 #include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <iostream>
using namespace std;
#define inf 0x3f3f3f3f
int map[][],flip[][],ans[][],preans[][];
//preans表示中间的得到的可行的答案,每次比较步数取最优
int n,m;
int calc (int s)
{
for (int i=;i<m;++i)
{
if (s&(<<i))
{
preans[][i]=;
flip[][i]^=;//x^=1由于异或特性完美模拟翻块!!!0^1=1,1^1=0
if (<n) flip[][i]^=;//如果其他相邻块在界内,翻过去
if (i->=) flip[][i-]^=;
if (i+<m) flip[][i+]^=;
}
}
for (int i=;i<n;++i)
{
for (int j=;j<m;++j)
{
if (flip[i-][j])//如果某个块的正上面的块是1,那么反转这个块
{
preans[i][j]=;
flip[i][j]^=;
flip[i-][j]^=;
if (i+<n) flip[i+][j]^=;
if (j->=) flip[i][j-]^=;
if (j+<m) flip[i][j+]^=;
}
}
}
for (int i=;i<m;++i)
{
if (flip[n-][i])
return inf;
}
int res=;//统计当前情况的步数
for (int i=;i<n;++i)
for (int j=;j<m;++j)
res+=flip[i][j];
return res;
}
int main()
{
//freopen("de.txt","r",stdin);
while (~scanf("%d%d",&n,&m))
{
for (int i=;i<n;++i)
for (int j=;j<m;++j)
cin>>map[i][j];
int res=inf;
memset(ans,,sizeof ans);
for (int i=;i< <<m;++i)//用二进制的方法表示状态
{
memcpy(flip,map,sizeof map);
memset(preans,,sizeof preans);
int temp=calc(i);
if (temp<res)//更新最少的ans状态
{
res=temp;
for (int i=;i<n;++i)
for (int j=;j<m;++j)
ans[i][j]=preans[i][j];
}
}
if (res==inf)
{
printf("IMPOSSIBLE\n");
}
else
{
for (int i=;i<n;++i)
{
for (int j=;j<m;++j)
{
printf("%d",ans[i][j]);
if (j!=m-)
printf(" ");
}
printf("\n");
}
}
}
return ;
}
1 0 0 1
1 0 0 1
0 0 0 0 讲道理这个题感觉不算dfs,算了无所谓。
题意就是给你一个n*m的图,1表示黑色,0表示白色,你可以翻转一些块,是这个块和它周围的块(上下左右,如果不出界)1变成0,0变成1。
问最少几步,能全变成0,输出翻转了那些块,否则IMPOSSIBLE.
讲一下思路,枚举第一行状态每个块都有翻与不翻两种情况,一共1<<m种状态。
对于上述每一种状态,接下来怎么做?考虑到每翻转一个块,它的上下左右块都受到影响,先按照这个翻转策略:如果这个块的上面的那个块是1那么
就翻转这个块。这样思考每一次都能解决上一行的问题。我们最后只要看一下最后一行是否都是0就行了!
PS:这个题一开始写了发600+ms,结果看还有70ms过的,打开看看用了异或1来模拟状态,后来改了改200+ms过的。
代码如下:

POJ 3279 Fliptile (dfs+二进制)的更多相关文章

  1. POJ 3279 Fliptile (二进制+搜索)

    [题目链接]click here~~ [题目大意]: 农夫约翰知道聪明的牛产奶多. 于是为了提高牛的智商他准备了例如以下游戏. 有一个M×N 的格子,每一个格子能够翻转正反面,它们一面是黑色,还有一面 ...

  2. POJ.3279 Fliptile (搜索+二进制枚举+开关问题)

    POJ.3279 Fliptile (搜索+二进制枚举+开关问题) 题意分析 题意大概就是给出一个map,由01组成,每次可以选取按其中某一个位置,按此位置之后,此位置及其直接相连(上下左右)的位置( ...

  3. POJ 3279 Fliptile(翻格子)

    POJ 3279 Fliptile(翻格子) Time Limit: 2000MS    Memory Limit: 65536K Description - 题目描述 Farmer John kno ...

  4. 状态压缩+枚举 POJ 3279 Fliptile

    题目传送门 /* 题意:问最少翻转几次使得棋子都变白,输出翻转的位置 状态压缩+枚举:和之前UVA_11464差不多,枚举第一行,可以从上一行的状态知道当前是否必须翻转 */ #include < ...

  5. POJ 3279(Fliptile)题解

    以防万一,题目原文和链接均附在文末.那么先是题目分析: [一句话题意] 给定长宽的黑白棋棋盘摆满棋子,每次操作可以反转一个位置和其上下左右共五个位置的棋子的颜色,求要使用最少翻转次数将所有棋子反转为黑 ...

  6. poj 3279 Fliptile(二进制)

    http://poj.org/problem?id=3279 在n*N的矩阵上,0代表白色,1代表黑色,每次选取一个点可以其颜色换过来,即白色变成黑色,黑色变成白色,而且其上下左右的点颜色也要交换,求 ...

  7. POJ 3279 Fliptile(DFS+反转)

    题目链接:http://poj.org/problem?id=3279 题目大意:有一个n*m的格子,每个格子都有黑白两面(0表示白色,1表示黑色).我们需要把所有的格子都反转成黑色,每反转一个格子, ...

  8. POJ 3279 Fliptile[二进制状压DP]

    题目链接[http://poj.org/problem?id=3279] 题意:给出一个大小为M*N(1 ≤ M ≤ 15; 1 ≤ N ≤ 15) 的图,图中每个格子代表一个灯泡,mp[i][j] ...

  9. POJ 3279 Fliptile(反转 +二进制枚举)

    Fliptile Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 13631   Accepted: 5027 Descrip ...

随机推荐

  1. SDK与API的理解

    1.SDK SDK (Software Development Kit):软件开发工具包,一般都是软件工程师为特定的软件包.软件框架.硬件平台.操作系统等建立应用软件时的开发工具的集合. SDK (S ...

  2. mysql 8.0版本下载安装以及默认密码修改

    1. 下载 去mysql官网下载地址进行下载,选择需要的安装包 可以直接跳过登录进行下载 ps:我是先注册账号下载的,注册时遇到一个坑,就是在chrome75版本无法选择省市,不选择又不让注册. 可以 ...

  3. 北风设计模式课程---20、UML类图介绍

    北风设计模式课程---20.UML类图介绍 一.总结 一句话总结: 不仅要通过视频学,还要看别的博客里面的介绍,搜讲解,搜作用,搜实例 设计模式都是对生活的抽象,比如用户获得装备,我可以先装备工厂先生 ...

  4. ubuntu 配置jre后出现问题Error occurred during initialization of VM

    百度了好久,找到了一个可以解决的办法. https://blog.51cto.com/chris2013/1313117 就是在usr/java/jre/lib/rt.pack需要解压成rt.jar ...

  5. 【玩转SpringBoot】异步任务执行与其线程池配置

    同步代码写起来简单,但就是怕遇到耗时操作,会影响效率和吞吐量. 此时异步代码才是王者,但涉及多线程和线程池,以及异步结果的获取,写起来颇为麻烦. 不过在遇到SpringBoot异步任务时,这个问题就不 ...

  6. WinSCP

    Safe, open-source file transfers WinSCP is an open-source, free SFTP, SCP, FTPS and FTP client for W ...

  7. Charles重发请求

    1.如下图 2.选中某个接口,右键--选择 Repeat Advanced选项,设置请求多次 3.

  8. Mac版-Jdk安装与环境配置

    下载安装 oracle官网下载,地址:https://www.oracle.com/technetwork/java/javase/downloads/index.html 下载好后,点击安装包,一直 ...

  9. 关系型数据库MySQL(二)_索引

    优点 大大加快数据的查询速度 创建唯一性索引,保证数据库表中每一行数据的唯一性 在使用分组和排序子句进行数据检索时,可以显著减少查询中分组和排序的时间 缺点 索引需要占物理空间 当对表中的数据进行增删 ...

  10. Html5 学习笔记 Sublime text3 和 Emmet 插件

    下载地址 :https://pan.baidu.com/s/1MpkaYdAcZd6RmPpmvOdK7w Emmet 压缩包 并且解压: 安装 Sublime Text 3, 选择首选项 浏览插件 ...