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. caffe_ssd学习-用自己的数据做训练

    几乎没用过linux操作系统,不懂shell编程,linux下shell+windows下UltraEdit勉勉强强生成了train.txt和val.txt期间各种错误辛酸不表,照着examples/ ...

  2. 转:MD5辅助类

    public class MD5Helper { private static MD5 md5 = new MD5CryptoServiceProvider(); private static str ...

  3. CentOS7使用yum命令安装Java1.8

    CentOS7使用yum命令安装Java1.8 首先更新已安装的包:#yum update查看系统当前的java版本:#java -version==================== CentOS ...

  4. navicat 连接postgresql报错pg_hba.conf

    PostgreSQ数据库为了安全,它不会监听除本地以外的所有连接请求,当用户通过JDBC访问是,会报一些如下的异常: org.postgresql.util.PSQLException: FATAL: ...

  5. node.js核心技术

    一.知识结构: http模块:配置简单 的web服务,npm/cnpm工具 express框架:express中间件进行服务配置:路由:请求处理: DB服务:学习使用mysql关系型数据库: web接 ...

  6. sparkStrming 实时插入 mysql 今天使用echart 实现了简单数据展示 很low 但学习必须加深

  7. Django框架----模板继承和静态文件配置

    母板 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8& ...

  8. Kafka学习笔记之为什么使用Kafka

    在介绍为什么使用kafka之前,我们有必要来了解一下什么是kafka? 0x00 什么是kafka Kafka是由LinkedIn开发的一个分布式的消息系统,使用Scala编写,它以可水平扩展和高吞吐 ...

  9. 我是这样做APP的:击中用户的痛点(转)

    击中用户的痛点 点评,感觉取名叫做“用户痛点的取舍”更加合适.很多公司.项目的失败完全取决于决策人取舍的失败,一味地追求大而全.迎合上级领导,专断而没有和团队做客观的分析.本文虽然以一个应该来说并不复 ...

  10. protocol method: #method<channel.close>(reply-code=406, reply-text=PRECONDITION_FAILED - unknown delivery tag 2, class-id=60, method-id=80)

    Caused by: com.rabbitmq.client.ShutdownSignalException: channel error; reason: {#method<channel.c ...