The Pilots Brothers' refrigerator
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 22286   Accepted: 8603   Special Judge

Description

The game “The Pilots Brothers: following the stripy elephant” has a quest where a player needs to open a refrigerator.

There are 16 handles on the refrigerator door. Every handle can be in one of two states: open or closed. The refrigerator is open only when all handles are open. The handles are represented as a matrix 4х4. You can change the state of a handle in any location [i, j] (1 ≤ i, j ≤ 4). However, this also changes states of all handles in row i and all handles in column j.

The task is to determine the minimum number of handle switching necessary to open the refrigerator.

Input

The input contains four lines. Each of the four lines contains four characters describing the initial state of appropriate handles. A symbol “+” means that the handle is in closed state, whereas the symbol “−” means “open”. At least one of the handles is initially closed.

Output

The first line of the input contains N – the minimum number of switching. The rest N lines describe switching sequence. Each of the lines contains a row number and a column number of the matrix separated by one or more spaces. If there are several solutions, you may give any one of them.

Sample Input

-+--
----
----
-+--

Sample Output

6
1 1
1 3
1 4
4 1
4 3
4 4

Source

Northeastern Europe 2004, Western Subregion

题目大意

  给出$4\times 4$共$16$个门把手,改变一个门把手(打开或关闭)需要同时改变同行同列的门把手,当所有门把手都打开时才能打开门。+代表关,-代表开。

基本思路

  此题与POJ 1753差不太多,只是本题没有Impossible的情况,且需要输出改变的门把手的位置。POJ 1753的详细题解请看这里,里面讲的都可以用于此题。因此本文简要略过,只给出爆搜的代码,以及分治的详解。

  一、爆搜出奇迹:

  1、将16个门把手的状态压缩成一个整数。

  2、可以选择改变0个门把手(已经全开),1~16个门把手(重复选相当于没有改变),要求给出最小步数,因此从0搜到16即可。

  3、要求输出要改变的门把手的位置,在搜索中回溯即可。本题为特判,因此输出顺序没有关系。

  4、搜不到要把门把手的状态改回来再搜。

  代码如下:

 #include <stdio.h>

 int handle;

 void read() {
for(int i=; i<; i++) {
for(int j=; j<; j++) {
handle<<=;
if(getchar()=='-')
handle|=;
}
getchar();
}
} void change(int i, int j) {
handle^=0x000F<<(i<<);
handle^=0x1111<<j;
handle^=(0x1<<j)<<(i<<);
} bool check() {
return handle==0xFFFF;
} bool find(int n, int&k, int i, int j) {
if(n==) return check()&&printf("%d\n",k);
if(j==) ++i, j=;
for(; i<; i++) {
for(; j<; j++) {
change(i,j);
if(find(n-,k,i,j+)) {
printf("%d %d\n",-i,-j);
return true;
}
change(i,j);
}
j=;
}
return false;
} void work() {
for(int i=; i<=; i++)
if(find(i,i,,))
return;
} int main() {
read();
work();
return ;
}

POJ 2965 爆搜出奇迹

  二、“分治”?分治!

  1、网上有把这种方法叫做递推的,有叫做贪心的,其实都不太贴切。

  2、考虑一个小问题:若只想改变一个门把手的状态(打开或关闭),而不影响其他的门把手,在同行同列同时操作的规则下,要如何做到?答案是,我们把“同行同列都改变”的操作称为操作op,对于我们想要单独改变的那个门把手,不仅对它做一次操作op,还对它的同行同列的门把手都做一次操作op。注意改变偶数次还是原样,这样中间的门把手改变了$7$次,同行同列的门把手改变了$4$次(因为是$4\times 4$的矩阵),而其他位置改变了2次(对同行同列门把手做操作op时改变的)。于是就达到了我们的目的——只改变中间的门把手状态。

  3、在第2点中,对同行同列元素都做了一次操作op,即都switch了一次。看起来好像不能求得最小步数吗?但要注意在我们把原本是关着的门把手全单独打开的过程中,另外的一些门把手可能被switch了不止$1$次。最终奇数次的才是真正要去switch的。同时这个过程是可逆的,对最终需要switch的门把手都switch一遍之后,就把原本关的全都变成开的了,也就是说我们要计算和保存的是一个要不要switch的状态矩阵(当然你也又可以压缩....不推荐干这种事情,真的)。

  4、在这里,我们先把“把所有门把手都打开,需要改变哪些门把手”的大问题,分成了“单独改变某个门把手,需要改变其他哪些门把手”的小问题,并最终合并各个小问题的答案,得到最终答案,这不是分治是什么?!

  代码如下:

 #include <stdio.h>

 int sswitch[][];

 int main() {
for(int i=; i<; i++) {
for(int j=; j<; j++)
if(getchar()=='+') {
for(int k=; k<; k++) {
sswitch[i][k]^=;
sswitch[k][j]^=;
}
sswitch[i][j]^=;
}
getchar();
} int res=;
for(int i=; i<; i++)
for(int j=; j<; j++)
if(sswitch[i][j])
++res;
printf("%d\n",res); for(int i=; i<; i++)
for(int j=; j<; j++)
if(sswitch[i][j])
printf("%d %d\n",i+,j+);
return ;
}

POJ 2903 分治

——本文原创by BlackStorm,转载请注明出处。

本文链接:http://www.cnblogs.com/BlackStorm/p/5240201.html

POJ 2965. The Pilots Brothers' refrigerator 枚举or爆搜or分治的更多相关文章

  1. poj 2965 The Pilots Brothers' refrigerator枚举(bfs+位运算)

    //题目:http://poj.org/problem?id=2965//题意:电冰箱有16个把手,每个把手两种状态(开‘-’或关‘+’),只有在所有把手都打开时,门才开,输入数据是个4*4的矩阵,因 ...

  2. 枚举 POJ 2965 The Pilots Brothers' refrigerator

    题目地址:http://poj.org/problem?id=2965 /* 题意:4*4的矩形,改变任意点,把所有'+'变成'-',,每一次同行同列的都会反转,求最小步数,并打印方案 DFS:把'+ ...

  3. POJ 2965 The Pilots Brothers' refrigerator 位运算枚举

      The Pilots Brothers' refrigerator Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 151 ...

  4. poj 2965 The Pilots Brothers' refrigerator (dfs)

    The Pilots Brothers' refrigerator Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 17450 ...

  5. POJ 2965 The Pilots Brothers' refrigerator 暴力 难度:1

    The Pilots Brothers' refrigerator Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 16868 ...

  6. POJ 2965 The Pilots Brothers' refrigerator (DFS)

    The Pilots Brothers' refrigerator Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 15136 ...

  7. POJ - 2965 The Pilots Brothers' refrigerator(压位+bfs)

    The game “The Pilots Brothers: following the stripy elephant” has a quest where a player needs to op ...

  8. POJ 2965 The Pilots Brothers' refrigerator【枚举+dfs】

    题目:http://poj.org/problem?id=2965 来源:http://acm.hust.edu.cn/vjudge/contest/view.action?cid=26732#pro ...

  9. POJ 2965 The Pilots Brothers' refrigerator (枚举+BFS+位压缩运算)

    http://poj.org/problem?id=2965 题意: 一个4*4的矩形,有'+'和'-'两种符号,每次可以转换一个坐标的符号,同时该列和该行上的其他符号也要随之改变.最少需要几次才能全 ...

随机推荐

  1. 关于SVG的viewBox

    在SVG中,通过svg标记的 width和height可以规定这段SVG代码所表达的数据在绘制时所占用的空间大小 如下代码svg设置了宽度与高度,rect同样,所以结果自然是全屏 <svg wi ...

  2. JavaScript权威设计--JavaScript表达式与运算符,语句(简要学习笔记六)

    1.delete是一元操作符,用来删除对象属性或者元素. var a={ x:1, y:2 } delete a.x; //删除x属性 “x”in a //false:a对象中已经不存在x属性 ale ...

  3. Android开发之自定义组件和接口回调

    说到自定义控件不得不提的就是接口回调,在Android开发中接口回调用的还是蛮多的.在这篇博客开始的时候呢,我想聊一下iOS的自定义控件.在iOS中自定义控件的思路是继承自UIView, 在UIVie ...

  4. CSS3与页面布局学习总结(二)——Box Model、边距折叠、内联与块标签、CSSReset

    一.盒子模型(Box Model) 盒子模型也有人称为框模型,HTML中的多数元素都会在浏览器中生成一个矩形的区域,每个区域包含四个组成部分,从外向内依次是:外边距(Margin).边框(Border ...

  5. 密码学应用(DES,AES, MD5, SHA1, RSA, Salt, Pkcs8)

    目录 一.数据加密标准 - Data Encryption Standard(DES) 二.高级加密标准 - Advanced Encryption Standard(AES) 三.消息摘要算法第五版 ...

  6. Angular2 小贴士 Name

    Angular2 正式版已经发布了一个月了,我也是通过各种方式在进行验证是否可以满足我们的需求,今天我就发现了一个问题.现在我们来一起说明一下,这个可能不算是bug,而应该需要我们记住就可以了. 我们 ...

  7. 【转】MVC、MVP与MVT

    MVC是Model-View-Control的缩写,Model指的是数据层,View指的是UI层,Control指的是控制层,这三层之间彼此联系.View层的用户行为,触发Control层,Contr ...

  8. JDBC——Java代码与数据库链接的桥梁

    常用数据库的驱动程序及JDBC URL: Oracle数据库: 驱动程序包名:ojdbc14.jar 驱动类的名字:oracle.jdbc.driver.OracleDriver JDBC URL:j ...

  9. JDK1.7.0_45源码阅读<java.lang.Boolean>

    本文适合的人群 其实感觉写这个标题的内容没有必要,只要你觉得对你有帮助那么就适合你,对你没帮助那么就不适合你.毕竟我不是专业作者,但咱会尽力的.其实最重要的一点是我不希望浪费您宝贵时间. 简要把内容在 ...

  10. Socket编程——怎么实现一个服务器多个客户端之间的连接

      package coreBookSocket; import java.io.IOException; import java.net.ServerSocket; import java.net. ...