POJ 3279 Fliptile(翻格子)

Time Limit: 2000MS    Memory Limit: 65536K

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".

农夫John知晓了一只智商不堪忧的快乐奶牛产出更多。于是他用广场砖弄了个M × N ( ≤ M ≤ ;  ≤ N ≤ )的网格,一面黑一面白,用来玩智力游戏。

如你所想,白的翻过来是黑的,黑的翻过来是白的。如果奶牛翻转瓷砖,使所有白面朝上,则会得到奖励。然而牛蹄子大,翻一块砖时会联动翻转相邻的砖(与被翻转的砖共享边缘)。翻面很累牛,因此他们想尽可能少翻点。

帮助奶牛们确定最少的翻转次数,还有最少需要翻动的位置。如果存在多解,则选取输出字符串字典序最小的解法。如果无解,则输出一行 "IMPOSSIBLE"。

CN

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

第1行:两个以空格分隔的整数:M和N
第2..M+1行:第i+1行是从左到右地描述第i行网格的颜色,有N个由空格分隔的整数,1表示黑,0表示白。

CN

Output - 输出

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

第1..M行:每行有N个由空格分隔的整数,每个数表示当前位置需要翻转的次数。

CN

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

题解

  题目的最少翻转次数不明觉厉,字典序的描述也是感觉有点问题,曾让我误以为策略是需要从左往右一列一列地搜索。主要还是道考(cai)策略的题目…………
  看着样例感觉翻转没有顺序的区别,那就从下往上地看(一开始看列看发现输出不对),一行一行地看,从左往右,从上往下。
  因为感觉没有顺序差别,所以翻转最多一次,翻两次回到原点。
  下面的行可以为上面的行做最终决定,依次往下,就看最后一行是否为0即可判断是否成立。
  唯一没法决定的在第一行,因此需要枚举第一行的开场情况,枚举第一行翻的位置与翻的次数(二进制)。

一开始也是对这个策略将信将疑,然后强迫症发作找到这个游戏,玩了几把后就差不多有自信写了……

(Flash好像加载不出来,这里直接放链接好了)http://s1.4399.com:8080/4399swf/upload_swf/ftp/20080527/1.swf

代码 C++

 #include <cstdio>
#include <cstring>
int row[], rowBack[], ts[], bit[], m, n;
void reRow(int y, int x){
if (y < || x < || y >= m || x >= n) return;
row[y] ^= bit[x];
}
void opt(){
int i, j;
for (i = ; i < m; ++i){
printf("%d", ts[i] & bit[]);
for (j = ; j < n; ++j) printf(" %d", (ts[i] & bit[j]) >> j);
puts("");
}
}
int main(){
int i, j, k, ed;
for (i = , j = ; i < ; ++i, j <<= ) bit[i] = j;
scanf("%d%d", &m, &n);
for (i = ; i < m; ++i){
for (j = ; j < n; ++j){
scanf("%d", &k);
if (k) rowBack[i] ^= bit[j];
}
} for (i = , ed = << n; i < ed; ++i){
memcpy(row, rowBack, sizeof rowBack);
memset(ts, , sizeof ts); ts[] = i;
for (j = ; j < n; ++j){
if (i & bit[j]){
reRow(, j); reRow(, j - ); reRow(, j + ); reRow(, j);
}
}
for (j = ; j < m; ++j){
for (k = ; k < n; ++k){
if (row[j - ] & bit[k]){
reRow(j - , k); reRow(j + , k); reRow(j, k); reRow(j, k - ); reRow(j, k + );
ts[j] ^= bit[k];
}
}
}
if (!row[m - ]) break;
}
if (row[m - ]) puts("IMPOSSIBLE");
else opt();
return ;
}

POJ 3279 Fliptile(翻格子)的更多相关文章

  1. 1647: [Usaco2007 Open]Fliptile 翻格子游戏

    1647: [Usaco2007 Open]Fliptile 翻格子游戏 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 423  Solved: 173[ ...

  2. [Usaco2007 Open]Fliptile 翻格子游戏

    [Usaco2007 Open]Fliptile 翻格子游戏 题目 Farmer John knows that an intellectually satisfied cow is a happy ...

  3. Fliptile 翻格子游戏

    问题 B: [Usaco2007 Open]Fliptile 翻格子游戏 时间限制: 5 Sec  内存限制: 128 MB 题目描述 Farmer John knows that an intell ...

  4. [BZOJ 1647][USACO 2007 Open] Fliptile 翻格子游戏

    1647: [Usaco2007 Open]Fliptile 翻格子游戏 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 702  Solved: 281[ ...

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

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

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

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

  7. [Usaco2007 Open]Fliptile 翻格子游戏题解

    问题 B: [Usaco2007 Open]Fliptile 翻格子游戏 时间限制: 5 Sec  内存限制: 128 MB 题目描述 Farmer John knows that an intell ...

  8. POJ 3279(Fliptile)题解

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

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

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

随机推荐

  1. 设计模式之Prototype(原型)(转)

    定义: 用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象. Prototype模式允许一个对象再创建另外一个可定制的对象,根本无需知道任何如何创建的细节,工作原理是:通过将一个原型对象传 ...

  2. HCatalog 学习之路

    最近在使用sqoop把数据从hive数仓导出到mysql数据库中接触到了hcatalog,所以特意学习了解一下相关知识,据悉hcatalog还是apache顶级项目. 学习参考: HCatalog 介 ...

  3. Ajax 知识

    Ajax 为什么要有ajax技术?    传统的web应用,一个简单的操作就要加载整个页面.浪费资源. Ajax  即“Asynchronous Javascript And XML”(异步JavaS ...

  4. div等比例缩放-------纯CSS实现自适应浏览器宽度的正方形

    摘自:https://blog.csdn.net/u010513603/article/details/78200207 1.方案一:CSS3 vw 单位 CSS3 中新增了一组相对于可视区域百分比的 ...

  5. jsky使用小记

    jsky是一款深度WEB应用安全评估工具,能轻松应对各种复杂的WEB应用,全面深入发现里面存在的安全弱点. jsky可以检测出包括SQL注入.跨站脚本.目录泄露.网页木马等在内的所有的WEB应用层漏洞 ...

  6. The Little Prince-12/06

    The Little Prince-12/06 “That doesn't matter. Draw me a sheep.” When the prince ask the planet to dr ...

  7. Javaweb笔记—03(BS及分页的业务流程)

    DAO部分:中间层声明该有的变量 pagerBook pageData sumRow sumPage求出总的记录数id唯一标识:select count(id) as rowsum from book ...

  8. EDK II之DXE Core的事件管理

    本文简单介绍一下UEFI中的事件管理: UEFI是不支持多进程的,但是UEFI支持多事件分发机制.UEFI只支持时钟中断,并基于时钟中断实现事件分发.类似于OS中基于时钟中断来实现基于时间片的多任务调 ...

  9. golang fatal error: all goroutines are asleep - deadlock!

    转自:https://www.cnblogs.com/ghj1976/p/4295013.html http://blog.csdn.net/skh2015java/article/details/6 ...

  10. php7安装redis拓展

    phpredis下载地址https://github.com/phpredis/phpredis   解压并进入源码包 unzip phpredis-develop.zip cd phpredis-d ...