博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 1222: EXTENDED LIGHTS OUT
阅读量:6696 次
发布时间:2019-06-25

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

Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 8417   Accepted: 5441

Description

In an extended version of the game Lights Out, is a puzzle with 5 rows of 6 buttons each (the actual puzzle has 5 rows of 5 buttons each). Each button has a light. When a button is pressed, that button and each of its (up to four) neighbors above, below, right and left, has the state of its light reversed. (If on, the light is turned off; if off, the light is turned on.) Buttons in the corners change the state of 3 buttons; buttons on an edge change the state of 4 buttons and other buttons change the state of 5. For example, if the buttons marked X on the left below were to be pressed,the display would change to the image on the right. 
The aim of the game is, starting from any initial set of lights on in the display, to press buttons to get the display to a state where all lights are off. When adjacent buttons are pressed, the action of one button can undo the effect of another. For instance, in the display below, pressing buttons marked X in the left display results in the right display.Note that the buttons in row 2 column 3 and row 2 column 5 both change the state of the button in row 2 column 4,so that, in the end, its state is unchanged. 
Note: 
1. It does not matter what order the buttons are pressed. 
2. If a button is pressed a second time, it exactly cancels the effect of the first press, so no button ever need be pressed more than once. 
3. As illustrated in the second diagram, all the lights in the first row may be turned off, by pressing the corresponding buttons in the second row. By repeating this process in each row, all the lights in the first 
four rows may be turned out. Similarly, by pressing buttons in columns 2, 3 ?, all lights in the first 5 columns may be turned off. 
Write a program to solve the puzzle.

Input

The first line of the input is a positive integer n which is the number of puzzles that follow. Each puzzle will be five lines, each of which has six 0 or 1 separated by one or more spaces. A 0 indicates that the light is off, while a 1 indicates that the light is on initially.

Output

For each puzzle, the output consists of a line with the string: "PUZZLE #m", where m is the index of the puzzle in the input file. Following that line, is a puzzle-like display (in the same format as the input) . In this case, 1's indicate buttons that must be pressed to solve the puzzle, while 0 indicate buttons, which are not pressed. There should be exactly one space between each 0 or 1 in the output puzzle-like display.

Sample Input

20 1 1 0 1 01 0 0 1 1 10 0 1 0 0 11 0 0 1 0 10 1 1 1 0 00 0 1 0 1 01 0 1 0 1 10 0 1 0 1 11 0 1 1 0 00 1 0 1 0 0

Sample Output

PUZZLE #11 0 1 0 0 11 1 0 1 0 10 0 1 0 1 11 0 0 1 0 00 1 0 0 0 0PUZZLE #21 0 0 1 1 11 1 0 0 0 00 0 0 1 0 01 1 0 1 0 11 0 1 1 0 1

Source

 
题解:
  
依次给每个位置的灯泡编号1~30,构造出一个30*31的01矩阵a,a[i][j]=1的含义是在第i个灯泡处按下开关,会对第j个灯泡产生影响,如果没有影响就是0。如果第i个矩阵是开着的,那么a[i][31]=1。对此矩阵进行异或的高斯消元,答案就是a矩阵的第31列。
1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 using namespace std; 9 int T;10 int a[50][50];11 void gauss(){12 for(int i=1;i<=30;i++){13 int tmp=i;14 while(tmp<=30&&a[tmp][i]==0) tmp++;15 if(tmp>30) continue;16 if(tmp!=i){17 for(int j=1;j<=31;j++) swap(a[i][j],a[tmp][j]);18 }19 for(int j=1;j<=30;j++){20 if(i!=j&&a[j][i]==1){21 for(int k=1;k<=31;k++){22 a[j][k]^=a[i][k];23 }24 }25 }26 }27 }28 int main(){29 scanf("%d",&T);30 for(int Cas=1;Cas<=T;Cas++){31 memset(a,0,sizeof(a));32 for(int i=1;i<=5;i++){33 for(int j=1;j<=6;j++){34 int num=(i-1)*6+j;35 int num1=num-6,num2=num+1,num3=num+6,num4=num-1;36 a[num][num]=1;37 if(1<=num1&&num1<=30) a[num][num1]=1;38 if(1<=num2&&num2<=30&&j!=6) a[num][num2]=1;39 if(1<=num3&&num3<=30) a[num][num3]=1;40 if(1<=num4&&num4<=30&&j!=1) a[num][num4]=1;41 }42 }43 for(int i=1;i<=30;i++) scanf("%d",&a[i][31]);44 gauss();45 printf("PUZZLE #%d\n",Cas);46 for(int i=1;i<=30;i++){47 printf("%d ",a[i][31]);48 if(i%6==0) printf("\n");49 }50 }51 return 0;52 }

 

转载于:https://www.cnblogs.com/CXCXCXC/p/5225292.html

你可能感兴趣的文章
[iOS 10 day by day] Day 6:自定义的通知界面
查看>>
Cookie 和 Session 关系和区别
查看>>
CoreFoundation CFRuntimeBase下的_cfinfo[4]存储信息探究
查看>>
学习记录——盒模型
查看>>
Swift语音和文本的转换
查看>>
Array方法汇总
查看>>
flex布局
查看>>
四大组件之Service_绑定服务
查看>>
swift中使用Objective C代码
查看>>
MS15-106 JScript ArrayBuffer.slice 任意地址读漏洞分析
查看>>
写一个复制 GitHub 仓库目录结构的cli
查看>>
Docker了解
查看>>
我的另类秋招 | 掘金技术征文
查看>>
【刷算法】把数组排成最小的数
查看>>
【刷算法】数值的整数次方
查看>>
笔记-OC语言的编译时与运行时
查看>>
Swift 让 Async 帮你解决线程问题
查看>>
ViewGroup事件分发机制
查看>>
LeetCode--9. 回文数
查看>>
flutter-dart 组件构造函数介绍
查看>>