uva1560
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 ‘×’ 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 ‘×’ 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’s or ‘1’s 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’s 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 2 0 1 1 0 1 0 1 0 0 1 1 1 0 0 1 0 0 1 1 0 0 1 0 1 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 1 1 0 0 1 0 1 1 1 0 1 1 0 0 0 1 0 1 0 0 Sample Ouput PUZZLE #1 1 0 1 0 0 1 1 1 0 1 0 1 0 0 1 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 PUZZLE #2 1 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 1 1 0 1 1 0 1
高斯消元xor。。。
保证有解了,那么直接消元,就可以了
#include<bits/stdc++.h>
using namespace std;
const int N = ;
const int dx[] = {-, , , }, dy[] = {, , -, };
#define id(i, j) (i - 1) * 6 + j
int a[N + ][N + ];
void build()
{
memset(a, , sizeof(a));
for(int i = ; i <= ; ++i)
for(int j = ; j <= ; ++j)
for(int k = ; k < ; ++k)
{
int x = i + dx[k], y = j + dy[k];
if(x > && x <= && y > && y <= ) a[id(i, j)][id(x, y)] = a[id(x, y)][id(i, j)] = ;
}
}
void gauss_jordan()
{
for(int now = ; now <= N; ++now)
{
int x = ;
for(int i = now; i <= N; ++i) if(a[i][now] == ) { x = i; break; }
if(!x) continue;
for(int i = ; i <= N + ; ++i) swap(a[now][i], a[x][i]);
for(int i = ; i <= N; ++i) if(i != now && a[i][now])
for(int j = ; j <= N + ; ++j) a[i][j] ^= a[now][j];
}
}
int main()
{
int T; scanf("%d", &T);
for(int kase = ; kase <= T; ++kase)
{
build();
for(int i = ; i <= N; ++i) scanf("%d", &a[i][N + ]), a[i][i] = ;
gauss_jordan();
printf("PUZZLE #%d\n", kase);
for(int i = ; i <= ; ++i)
{
for(int j = ; j < ; ++j) printf("%d ", a[(i - ) * + j][N + ]);
printf("%d\n", a[i * ][N + ]);
}
}
return ;
}
uva1560的更多相关文章
随机推荐
- Python之爬虫-段子网
Python之爬虫-段子网 https://ishuo.cn #!/usr/bin/env python # -*- coding:utf-8 -*- import re import request ...
- use-gulp
参考: https://github.com/Platform-CUF/use-gulp use-gulp 为什么使用gulp? 首先看一篇文章 Gulp的目标是取代Grunt 根据gulp的文档,它 ...
- POJ 1741 Tree【Tree,点分治】
给一棵边带权树,问两点之间的距离小于等于K的点对有多少个. 模板题:就是不断找树的重心,然后分开了,分治,至少分成两半,就是上限为log 然后一起统计就ok了 #include<iostream ...
- Vue 实例以及生命周期
最简单的 Vue 实例 //html <div id="app"> {{message}} </div> //javascript var vm = new ...
- CSS实现自适应不同大小屏幕的背景大图的两种方法(转自简书)
CSS实现自适应不同大小屏幕的背景大图的两种方法 一张清晰漂亮的背景图片能给网页加分不少,设计师也经常会给页面的背景使用大图,我们既不想图片因为不同分辨率图片变形,也不希望当在大屏的情况下,背景有一块 ...
- P1340 兽径管理 洛谷
https://www.luogu.org/problem/show?pid=1340 题目描述 约翰农场的牛群希望能够在 N 个(1<=N<=200) 草地之间任意移动.草地的编号由 1 ...
- Java 代理模式和装饰者模式的区别
装饰模式:以对客户端透明的方式扩展对象的功能,是继承关系的一个替代方案:代理模式:给一个对象提供一个代理对象,并有代理对象来控制对原有对象的引用: 装饰模式应该为所装饰的对象增强功能:代理模式对代理的 ...
- 条款三:尽量用new和delete而不用malloc和free
malloc和free(及其变体)会产生问题的原因在于它们太简单:他们不知道构造函数和析构函数. 假设用两种方法给一个包含10个string对象的数组分配空间,一个用malloc,另一个用new: s ...
- Scala-LIST/Tuple/Map
环境: CentOS 6.3 LIST(列表) 代码: $ cat list.scala var mylist = List(1,2,3) println(mylist) var mylist1 = ...
- 消息驱动bean(MDB)实例
到眼下为止前面介绍的有关JavaEE的东西都是同步的.也就是说调用者调用某个方法.那么这种方法必须马上运行并返回运行结果. 用官方一些的语言来说就是"client通过业务接口调用一个方法,在 ...