这题很经典啊,以前也遇到过类似的题--计蒜客 硬币翻转。

不过这题不仅要求翻转次数最少,且翻转方案的字典序也要最小。

解法:二进制枚举第一行的翻转方案,然后处理第二行,如果第二行的k列的上一列是黑色,那么第二行k列必须翻转,因为要保证当前行的上一行全为白色。在第一行确定的情况下,当前翻转一定是最优选择。一样的处理方法直到最后一行,最后检查最后一行是否有黑色,如果有说明当前方案无法成功。

PS:枚举第一行是为了解题方便,枚举任何一行都可以,反正每行都能做出最优解。

AC代码

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
using namespace std;
const int maxn = 20;

int G[maxn][maxn], old[maxn][maxn];
int n, m;

const int dx[] = {0,0,-1,1,0};
const int dy[] = {1,-1,0,0,0};

void flip(int x, int y){
	for(int i = 0; i < 5; ++i){
		int px = x + dx[i], py = y + dy[i];
		if(px < 0 || py < 0 || px >= n || py >= m) continue;
		G[px][py] = 1 - G[px][py];
	}
}

int main(){
	while(scanf("%d%d", &n, &m) == 2){
		for(int i = 0; i < n; ++i)
		for(int j = 0; j < m; ++j){
			scanf("%d", &old[i][j]);
		}
		int ans = 1 << 30, a[maxn][maxn];
		//memset(a, 1, sizeof(a));

		for(int i = 0; i < (1 << m); ++i){
			memcpy(G, old, sizeof(G));
			int tp = 0, b[maxn][maxn];
			memset(b, 0, sizeof(b));

			for(int j = 0; j < m; ++j){
				if((1 << j) & i) {
					b[0][j] = 1;
					++tp;
					flip(0, j);
				}
			}

			for(int j = 1; j < n ; ++j) {
				for(int k = 0; k < m; ++k){
					if(G[j - 1][k] == 1){
						tp++;
						b[j][k] = 1;
						flip(j, k);
					}
				}
			}

			int flag = 1;
			for(int j = 0; j < m; ++j){
				if(G[n-1][j]) {
					flag = 0;
					break;
				}
			}
			if(flag){
				int ok = 0;
				if(tp < ans) ok = 1;
				else if(tp == ans) {
					for(int j = 0; j < n; ++j)
					for(int k = 0; k < m; ++k){
						if(b[j][k] < a[j][k]) {
							ok = 1;
							j = n, k = m;
						}
						else if(b[j][k] > a[j][k]){
							j = n, k = m;
						}
					}
				}

				if(ok) {
					ans = tp;
					memcpy(a, b, sizeof(b));
				}
			}
		}
		//printf("%d\n", ans);
		if(ans == 1 << 30) printf("IMPOSSIBLE\n");
		else {
			for(int i = 0; i < n; ++i) {
				for(int j = 0; j < m; ++j){
					if(j == 0) printf("%d", a[i][j]);
					else printf(" %d", a[i][j]);
				}
				printf("\n");
			}

		}
	}
	return 0;
}

如有不当之处欢迎指出!

POJ - 3279 枚举 [kuangbin带你飞]专题一的更多相关文章

  1. POJ - 1321 dfs [kuangbin带你飞]专题一

    枚举行和列即可,当前已经放下cnt个棋子,当前已经搜索到第r行,如果 n - r + cnt  < k 直接退出,因为后面无法放下剩下的棋子. AC代码 #include<cstdio&g ...

  2. POJ - 2251 bfs [kuangbin带你飞]专题一

    立体bfs,共有六个方向: const int dx[] = {0,0,1,-1,0,0}; const int dy[] = {1,-1,0,0,0,0}; const int dz[] = {0, ...

  3. POJ - 3087 模拟 [kuangbin带你飞]专题一

    模拟洗牌的过程,合并两堆拍的方式:使先取s2,再取s1:分离成两堆的方式:下面C张放到s1,上面C张到s2.当前牌型与第一次相同时,说明不能搜索到答案. AC代码 #include<cstdio ...

  4. POJ - 3414 bfs [kuangbin带你飞]专题一

    状态搜索,每种状态下面共有六种选择,将搜索到的状态保存即可. d[i][j]表示状态A杯中水i升,B杯中水j升,总状态数量不会超过A杯的容量 * B杯的容量. AC代码 #include<cst ...

  5. POJ - 3984 bfs [kuangbin带你飞]专题一

    bfs搜索过程中将路径保存下即可. AC代码 #include<cstdio> #include<cstring> #include<algorithm> #inc ...

  6. [kuangbin带你飞]专题1-23题目清单总结

    [kuangbin带你飞]专题1-23 专题一 简单搜索 POJ 1321 棋盘问题POJ 2251 Dungeon MasterPOJ 3278 Catch That CowPOJ 3279 Fli ...

  7. 【算法系列学习三】[kuangbin带你飞]专题二 搜索进阶 之 A-Eight 反向bfs打表和康拓展开

    [kuangbin带你飞]专题二 搜索进阶 之 A-Eight 这是一道经典的八数码问题.首先,简单介绍一下八数码问题: 八数码问题也称为九宫问题.在3×3的棋盘,摆有八个棋子,每个棋子上标有1至8的 ...

  8. [kuangbin带你飞]专题一 简单搜索

            ID Origin Title 454 / 1008 Problem A POJ 1321 棋盘问题   328 / 854 Problem B POJ 2251 Dungeon Ma ...

  9. [kuangbin带你飞]专题一 简单搜索(回顾)

    A - 棋盘问题 POJ - 1321 注意条件:不能每放一个棋子,就标记一行和一列,我们直接枚举每一行就可以了. AC代码: #include<iostream> #include< ...

随机推荐

  1. Servlet--HttpSession接口,HttpSessionContext接口,Cookie类

    HttpSession接口 定义 public interface HttpSession 这个接口被 Servlet 引擎用来实现在 HTTP 客户端和 HTTP 会话两者的关联.这种关联可能在多外 ...

  2. keytool 错误:java.to.FileNotFoundException:

    老是报如题的错误: 后来才知道是因为当前的目录下没有写的权限,所以需要指定一个路径来存放android.key: keytool -genkey -alias android.key -keyalg ...

  3. java IO(一):File类

    */ .hljs { display: block; overflow-x: auto; padding: 0.5em; color: #333; background: #f8f8f8; } .hl ...

  4. bzoj 2208 [Jsoi2010]连通数

    2208: [Jsoi2010]连通数 Time Limit: 20 Sec  Memory Limit: 512 MB Description Input 输入数据第一行是图顶点的数量,一个正整数N ...

  5. SQL explain详细结果

    explain 的结果 id select_type 查询的序列号 select_type simple (不含子查询) primary (含子查询.或者派生查询) subquery (非from子查 ...

  6. SQLServer2008修改sa密码的方法与SQL server 2008数据库的备份与还原

    sa密码的修改转载自:http://blog.csdn.net/templar1000/article/details/20211191 SQL server 2008数据库的备份与还原转自 :htt ...

  7. git修改目录名称

    同步代码 $ git pull origin master 修改某个目录名称 $ git mv doc docs 把doc目录修改为docs 提交至远程仓库 $ git push origin mas ...

  8. js判断是pc端还是移动端

    function checkMobile() { var pda_user_agent_list = new Array("2.0 MMP", "240320" ...

  9. Eclipse导入servlet项目报错

    Eclipse导入servlet项目,缺少servlet的jar包,导致项目报错. 解决: step1:选中项目->properties step2:选择的Targeted Runtimes s ...

  10. 《Thinking in Java》学习笔记(六)

    1.Class相关知识 Class类可以理解为类的图纸,通过Class类可以分析类的结构.构建出类的实例. Class.forName("test.TestClass").newI ...