POJ 1222 EXTENDED LIGHTS OUT

#include<iostream>
#include<vector>
#include<algorithm>
#include<cstring>
#include<cstdio>
using namespace std;
#define MM(name,what) memset(name,what,sizeof(name))
const int maxn = 30;
const int dir[4][2]={{1,0},{-1,0},{0,-1},{0,1}};

int a[maxn][maxn];
int b[maxn];
int x[maxn];

bool yes(int x,int y)
{
	if(x>=0 && x<5 && y>=0 && y<6)
	{	
		return true;
	}
	return false;
}

int get(int x,int y)
{
	return x*6+y;
}

bool find(int u,int line)
{
	for(int k=line;k<30;k++)
	{
		if(a[k][u]==1)
		{
			for(int i=u;i<30;i++)
			{
				swap(a[line][i],a[k][i]);
			}
			swap(b[line],b[k]);
			return true;				
		}
	}	
	return false;
}

bool start()
{
	int line = 0;
	for(int u=0;u<30;u++)	
	{	
		if(!find(u,line))
		{
			continue;
		}
		for(int k=line+1;k<30;k++)
		{
			if(a[k][u])
			{
				for(int i=u;i<30;i++)
				{
					a[k][i]^=a[line][i];
				}
				b[k]^=b[line];
			}	
		}
		line++;
	}
	if(line==30)
	{
		for(int u=29;u>=0;u--)
		{
			x[u]=b[u];		
			for(int i=u+1;i<30;i++)
			{
				x[u]^=a[u][i]*x[i];
			}	
		}
		return true;
	}	
	return false;
}

int main()
{
	int T;
	cin>>T;
	for(int tt=1;tt<=T;tt++)
	{
		MM(a,0);
		for(int i=0;i<maxn;i++)
		{
			cin>>b[i];
		}
		int now,to;
		for(int i=0;i<5;i++)	
		{
			for(int j=0;j<6;j++)		
			{
				int now = get(i,j);
				a[now][now]=1;
				for(int u=0;u<4;u++)
				{
					int tox = i+dir[u][0];
					int toy = j+dir[u][1];				
					to = get(tox,toy);
					if(yes(tox,toy))
					{
						a[now][to]=1;
					}		
				}
			}			
		}
		if(start())
		{
			cout<<"PUZZLE #"<<tt<<endl;
			for(int i=0;i<5;i++)
			{
				for(int j=0;j<5;j++)
				{
					cout<<x[get(i,j)]<<" "; 
				}
				cout<<x[get(i,5)]<<endl;
			}
		}
	}
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值