[Gauss]POJ1681 Painter's Problem
和POJ1222(分析)完全相同
题意也类似, 可以涂自己以及上下左右五个位置的颜色
问几次能全部涂色 不能输出inf
01方程组 用异或来求解就好了
- int a[][]; // 增广矩阵
- int x[]; // 解
- int free_x[]; // 标记是否为自由未知量
- int n;
- void debug()
- {
- for(int i0=;i0<n*n;i0++)
- {
- for(int j0=;j0<n*n;j0++)
- printf("%d ", a[i0][j0]);
- printf("\n");
- }
- }
- int Gauss(int n, int m) // n个方程 m个未知数 即 n行m+1列
- {
- //转换为阶梯形式
- int col=, k, num=;
- for(k=;k<n && col<m;k++, col++)
- {//枚举行
- int max_r=k;
- for(int i=k+;i<n;i++)//找到第col列元素绝对值最大的那行与第k行交换
- if(abs(a[i][col])>abs(a[max_r][col]))
- max_r=i;
- if(max_r!=k)// 与第k行交换
- for(int j=col;j<m+;j++)
- swap(a[k][j], a[max_r][j]);
- if(!a[k][col])// 说明该col列第k行以下全是0了
- {
- k--;
- free_x[num++]=col;
- continue;
- }
- for(int i=k+;i<n;i++)// 枚举要删除的行
- if(a[i][col])
- for(int j=col;j<m+;j++)
- a[i][j]^=a[k][j];
- }
- // debug();
- // printf("%d %d\n", col, k);
- for(int i=k;i<n;i++)
- if(a[i][col])
- return -; // 无解
- // if(k<m) //m-k为自由未知量个数
- // {
- int stat=<<(m-k);
- int ans=INT_MAX;
- for(int i=;i<stat;i++)
- {
- int cnt=;
- for(int j=;j<m-k;j++)
- if(i&(<<j))
- {
- x[free_x[j]]=;
- cnt++;
- }
- else
- x[free_x[j]]=;
- for(int j=k-;j>=;j--)
- {
- int tmp;
- for(tmp=j;tmp<m;tmp++)
- if(a[j][tmp])
- break;
- x[tmp]=a[j][m];
- for(int l=tmp+;l<m;l++)
- if(a[j][l])
- x[tmp]^=x[l];
- cnt+=x[tmp];
- }
- if(cnt<ans)
- ans=cnt;
- }
- return ans;
- // }
- //
- // // 唯一解 回代
- // for(int i=m-1;i>=0;i--)
- // {
- // x[i]=a[i][m];
- // for(int j=i+1;j<m;j++)
- // x[i]^=(a[i][j] && x[j]);
- // }
- // int ans=0;
- // for(int i=0;i<n*n;i++)
- // ans+=x[i];
- // return ans;
- }
- void init()
- {
- memset(a, , sizeof(a));
- memset(x, , sizeof(x));
- for(int i=;i<n;i++)
- for(int j=;j<n;j++)
- {
- int t=i*n+j;
- a[t][t]=;
- if(i>)
- a[(i-)*n+j][t]=;
- if(i<n-)
- a[(i+)*n+j][t]=;
- if(j>)
- a[i*n+j-][t]=;
- if(j<n-)
- a[i*n+j+][t]=;
- }
- }
- int main()
- {
- int t;
- scanf("%d", &t);
- while(t--)
- {
- scanf("%d", &n);
- init();
- for(int i=;i<n;i++)
- for(int j=;j<n;j++)
- {
- char ch;
- cin>>ch;
- a[i*n+j][n*n]=(ch=='w');
- }
- int t=Gauss(n*n, n*n);
- if(t==-)
- {
- printf("inf\n");
- continue ;
- }
- printf("%d\n", t);
- }
- return ;
- }
POJ 1681
注意 对于无穷解的情况, 初等行变换中的交换会影响判断哪些是自由未知量, 那么就要记录交换
[Gauss]POJ1681 Painter's Problem的更多相关文章
- [POJ1681]Painter's Problem(高斯消元,异或方程组,状压枚举)
题目链接:http://poj.org/problem?id=1681 题意:还是翻格子的题,但是这里有可能出现自由变元,这时候枚举一下就行..(其实这题直接状压枚举就行) /* ━━━━━┒ギリギリ ...
- poj1681 Painter's Problem(高斯消元法,染色问题)
题意: 一个n*n 的木板 ,每个格子 都 可以 染成 白色和黄色,( 一旦我们对也个格子染色 ,他的上下左右都将改变颜色): 给定一个初始状态 , 求将 所有的 格子 染成黄色 最少需要染几次? ...
- POJ1681 Painter's Problem(高斯消元)
题目看似与线性方程组无关,但可以通过建模转化为线性方程组的问题. 对于一块砖,刷两次是没有必要的,我们令x=1表示刷了一次,x=0没有刷,一共有n*n个,所以相当于有n*n个未知量x. 定义aij表示 ...
- poj1681 Painter's Problem
题目描述: 和那道关灯差不多,求最少涂几次. 题解: 高消,然后深搜枚举自由元更新答案. 貌似这道题没卡贪心但是其他题基本都卡了. 比如$Usaco09Nov$的$lights$ 代码: #inclu ...
- Painter's Problem poj1681 高斯消元法
Painter's Problem Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 4420 Accepted: 2143 ...
- POJ 1681 Painter's Problem 【高斯消元 二进制枚举】
任意门:http://poj.org/problem?id=1681 Painter's Problem Time Limit: 1000MS Memory Limit: 10000K Total ...
- poj 1681 Painter's Problem
Painter's Problem 题意:给一个n*n(1 <= n <= 15)具有初始颜色(颜色只有yellow&white两种,即01矩阵)的square染色,每次对一个方格 ...
- Painter's Problem (高斯消元)
There is a square wall which is made of n*n small square bricks. Some bricks are white while some br ...
- POJ 1681 Painter's Problem(高斯消元+枚举自由变元)
http://poj.org/problem?id=1681 题意:有一块只有黄白颜色的n*n的板子,每次刷一块格子时,上下左右都会改变颜色,求最少刷几次可以使得全部变成黄色. 思路: 这道题目也就是 ...
随机推荐
- 月半小夜曲下的畅想--DOCTYPE模式
月半小夜曲下的畅想--DOCTYPE模式 @(css3 box-sizing)[doctype声明|quirks模式|妙瞳] DOCTYPE文档类型标签,该标签是将特定的标准通用标记语言或者XML文档 ...
- 【转】The content of element type "configuration" must match "(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?...
[转]The content of element type "configuration" must match "(properties?,settings?,typ ...
- c#结束winword.exe进程、
最近在做一个c#生成word的功能.调用了微软自带的COM组件. 生成完以后发现有一个winword.exe无法关闭.调试或修改代码都没有搞明白. 遂强制关闭进程了. System.Diagnost ...
- ASP.NET 4.0 来了
伴随着VS2010的公开测试,ASP.NET4.0也进入了我们的视线.ASP.NET4.0究竟给我们带来了什么,将在哪些方面提高我们的生产力? 在何时你需要使用ASP.NET4.0开发你的网站程序? ...
- 如何在ANDROID JNI 的C++中打Log
http://blog.csdn.net/pkigavin/article/details/8583537 最近在研究Android 2.3.3源代码的C/C++层,需要对代码进行一些调试,但是奇怪的 ...
- 源代码jar包中中文注释乱码
目前公司开发的多个组件有打包源代码并发布到nexus,但是很多同事通过maven使用组件时,直接通过eclipse浏览源代码时,发现中文注释为乱码的问题.其实这个eclipse默认编码造成的问题.可以 ...
- CodeForces 527B
Description Ford Prefect got a job as a web developer for a small company that makes towels. His cur ...
- TimesTen ODBC 链接库差异及相关命令行工具的使用注意事项
1. TimesTen有两种访问模式:Direct模式和Client/Server模式,以下为来自Operations Guide 的描述 Connecting using TimesTen ODBC ...
- c++学习笔记1(c++简介)
c++和c的不同: 1,c++是c的扩充. 2,在解决问题时思维方式的不同.(c++采用面向对象思维,c面向结构思维) 面向结构思维:将一个大程序拆分成一个个很小的结构.每个结构完成一个或多个功能,所 ...
- 关于使用工具类org.apache.commons.collections.ListUtils合并List的问题
今天在做项目时,需要将几个List进行合并,于是就用到了apache提供关于List操作的工具类ListUtils,但是在使用的过程中发现一些问题. public static void main(S ...