Fliptile
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 16558   Accepted: 6056

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
1 0 0 1
1 0 0 1
0 0 0 0

题目链接:

http://poj.org/problem?id=3279

题目大意:

给你一个n*m的由0和1组成的矩阵A。一个对应的n*m的01矩阵B,若B的某元素为1,则矩阵A对应位置上下左右及自己五个位置发生反转,即0变为1,1变为0。求字典序最小的矩阵B,使得A变为全0。(做完发现该字典序是反的即从右到左,算一个坑点吧)。由于重复反转效果是一样的,所以这题理解成这样是没有错误的。

简单搜索题。

这题思路比较奇特。从i枚举到1<<n,模拟第一行的反转状态。用位运算获得每一位是1还是0。就是代码中的 i&(i<<j)。然后根据第一行的反转结果,就能完全确定接下来所有行的反转状态和反转结果。这是因为若第一行某一位反转后为1,只有通过下一行此处反转才能变为0。如此,最后只要判断最后一行是否为全0。若全为0,立即输出便是字典序最小的结果。具体细节可以参考我的代码体会一哈^_^。

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<queue> using namespace std; int tile[][];
int ttile[][];
int oper[][]; int main()
{
int m,n;
scanf("%d%d",&m,&n);
for(int i=;i<m;i++)
for(int j=;j<n;j++)
scanf("%d",tile[i]+j); int fflag=false;
for(int i=;i<(<<n);i++)//枚举第一行的翻转
{
memcpy(ttile,tile,sizeof(tile)); for(int j=;j<n;j++)//处理第一行的翻转
{
int op;
if((i&(<<j))>)
op=oper[][j]=;
else
op=oper[][j]=;
ttile[][j]^=op;
if(j->=)
ttile[][j-]^=op;
if(j+<n)
ttile[][j+]^=op;
if(m>)
ttile[][j]^=op;
} for(int j=;j<m;j++)//处理2..m行的翻转
{
for(int k=;k<n;k++)
{
int op;
if(ttile[j-][k]==)
op=oper[j][k]=;
else
op=oper[j][k]=;
ttile[j][k]^=op;
ttile[j-][k]^=op;
if(k->=)
ttile[j][k-]^=op;
if(k+<n)
ttile[j][k+]^=op;
if(j+<m)
ttile[j+][k]^=op;
}
} int flag=true;
for(int i=;i<n;i++)//判断最后一行是否符合条件
{
if(ttile[m-][i]==)
{
flag=false;
break;
}
} if(flag)
{
fflag=true;
break;
}
} if(fflag)
{
for(int i=;i<m;i++)
for(int j=;j<n;j++)
{
if(j==n-)
printf("%d\n",oper[i][j]);
else
printf("%d ",oper[i][j]);
}
}
else
printf("IMPOSSIBLE\n");
return ;
}

poj 3279 Fliptile (简单搜索)的更多相关文章

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

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

  2. poj 3279 Fliptile(二进制搜索)

    Farmer John knows that an intellectually satisfied cow is a happy cow who will give more milk. He ha ...

  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,集合枚举。

    Description Farmer John knows that an intellectually satisfied cow is a happy cow who will give more ...

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

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

  8. 【POJ 3279 Fliptile】开关问题,模拟

    题目链接:http://poj.org/problem?id=3279 题意:给定一个n*m的坐标方格,每个位置为黑色或白色.现有如下翻转规则:每翻转一个位置的颜色,与其四连通的位置都会被翻转,但注意 ...

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

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

随机推荐

  1. Jrebel 激活的方法

    jrebel  激活的方法: 试了很多都不好用,下面这个方法比较简单快捷.(不知道可以坚持多久) myjrebel 7月分官方正式停用,致使广大朋友无法使用jrebel/XRebel,可按如下地址进行 ...

  2. 一文带你深入了解 redis 复制技术及主从架构

    主从架构可以说是互联网必备的架构了,第一是为了保证服务的高可用,第二是为了实现读写分离,你可能熟悉我们常用的 MySQL 数据库的主从架构,对于我们 redis 来说也不意外,redis 数据库也有各 ...

  3. 【故障公告】数据库服务器 CPU 近 100% 引发的故障

    抱歉,今天上午 10:48 ~ 10:33 期间,我们所使用的数据库服务(阿里云 RDS 实例 SQL Server 2016 标准版)又出现了 CPU 近 100% 问题,由此给您带来麻烦,请您谅解 ...

  4. 最小化安装CentOS 7 系统

    目录 CentOS 程序准备 开始安装系统 创建虚拟机 安装系统 CentOS 运维最常接触的系统就是CentOS系统,无论是版本 6 还是版本 7 而且在安装系统时,讲究最小化安装系统,之后当需要什 ...

  5. jsp html 实现隐藏输入框,点击可以取消隐藏&&弹出输入框

    jsp代码: <script language="javascript" type="text/javascript"> function chg ...

  6. elastic search(es)安装

    全文搜索属于最常见的需求,开源的 Elasticsearch (以下简称 Elastic)是目前全文搜索引擎的首选. 它可以快速地储存.搜索和分析海量数据.维基百科.Stack Overflow.Gi ...

  7. PHP安全之道3:常见漏洞和攻防

    第一篇 SQL注入 安全配置和编程安全并不是万全之法,攻击者往往可以通过对漏洞的试探找到新的突破口,甚至0days. 下面总结以下常见漏洞,在日常开发维护工作中可以留意. *聊聊老朋友:SQL注入漏洞 ...

  8. 2019-2020-1 20199304《Linux内核原理与分析》第七周作业

    进程的描述和进程的创建 1.进程描述 1.1操作系统的三大管理功能以及对应的抽象概念: 进程管理 内存管理 文件系统 1.2Linux进程的状态: (1)Linux中进程的状态细分可以分为七种: R运 ...

  9. Use Swift Dynamic Framework (如何科学地引用第三方 Swift 库)

    转自:http://andelf.github.io/blog/2014/07/07/use-swift-dynamic-library/ CocoaPods 由于完全使用静态链接解决方法,过度依赖 ...

  10. iOS开发-CoreMotion框架

    转自: CoreMotion是一个专门处理Motion的框架,其中包含了两个部分 加速度计和陀螺仪,在iOS4之前加速度计是由 UIAccelerometer 类 来负责采集数据,现在一般都是用Cor ...