博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ--3279(开关问题2个不同时间写的代码)
阅读量:5140 次
发布时间:2019-06-13

本文共 2945 字,大约阅读时间需要 9 分钟。

Fliptile
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 19730   Accepted: 7118

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 41 0 0 10 1 1 00 1 1 01 0 0 1

Sample Output

0 0 0 01 0 0 11 0 0 10 0 0 0 思路: 因为求解的是最小按键次数,如果将所有都遍历的话,时间复杂度为 2^(N*M)太大了,因为开关按下,上下左右和它自己都会变化,所以,让第一行出现2^m次不同的情况,用二进制表示

也就是for(int i=0;i< 1<<m; i++)种不同情况, 然后将i转化为二进制。这样就可以代表具体开关的地方,第二行以及以后就可以根据第一行进行遍历了。因为第一行已经确定了所以,第二行就专门去寻找第一行还没有关的灯,比如:map[i][j] = 1,就按下a[i+1][j]处的开关保证i+1行开关按后,第i行的灯全部关闭为0 最后判断这种情况是否正确,然后判断是否最小,记录下来输出。

#include 
#include
#include
#include
#include
#include
#include
using namespace std;int map[20][20],mm[20][20];int a[20][20],A[20][20];int d[5][2] = { 0,0,1,0,-1,0,0,1,0,-1};int get_s(int x, int y){ if(map[x][y]==1) return 0; else return 1;}int main(){ int n,m; cin>>n>>m; memset(map,0,sizeof(map)); for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ cin>>map[i][j]; } } memcpy(mm,map,sizeof(map)); int minn = 1e9; for( int i = 0; i < 1<
>(j-1))&1; if( a[1][j] == 1){ count++; map[1][j] = get_s(1,j); map[1][j-1] = get_s(1,j-1); map[1][j+1] = get_s(1,j+1); map[2][j] = get_s(2,j); } } for( int j = 1; j < n; j++ ) { for( int k = 1; k <= m; k++ ) { if( map[j][k] == 1 ) { a[j+1][k] = 1; int dx = j+1, dy = k, tx, ty; count++; for( int z = 0; z < 5; z++ ) { tx = dx + d[z][0]; ty = dy + d[z][1];// cout<
<<" "<
<

 

转载于:https://www.cnblogs.com/0526yao/p/10528951.html

你可能感兴趣的文章
【题解】[P4178 Tree]
查看>>
QML学习笔记之一
查看>>
WPF中实现多选ComboBox控件
查看>>
ionic2+ 基础
查看>>
MyBaits动态sql语句
查看>>
用户空间与内核空间,进程上下文与中断上下文[总结]
查看>>
JAVA开发环境搭建
查看>>
django迁移数据库错误
查看>>
Data truncation: Out of range value for column 'Quality' at row 1
查看>>
字符串处理
查看>>
ad logon hour
查看>>
罗马数字与阿拉伯数字转换
查看>>
Eclipse 反编译之 JadClipse
查看>>
距离公式汇总以及Python实现
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>