和POJ1222(分析)完全相同

题意也类似, 可以涂自己以及上下左右五个位置的颜色

问几次能全部涂色 不能输出inf

01方程组 用异或来求解就好了

  1. int a[][]; // 增广矩阵
  2. int x[]; // 解
  3. int free_x[]; // 标记是否为自由未知量
  4.  
  5. int n;
  6. void debug()
  7. {
  8. for(int i0=;i0<n*n;i0++)
  9. {
  10. for(int j0=;j0<n*n;j0++)
  11. printf("%d ", a[i0][j0]);
  12. printf("\n");
  13. }
  14. }
  15.  
  16. int Gauss(int n, int m) // n个方程 m个未知数 即 n行m+1列
  17. {
  18. //转换为阶梯形式
  19. int col=, k, num=;
  20. for(k=;k<n && col<m;k++, col++)
  21. {//枚举行
  22. int max_r=k;
  23. for(int i=k+;i<n;i++)//找到第col列元素绝对值最大的那行与第k行交换
  24. if(abs(a[i][col])>abs(a[max_r][col]))
  25. max_r=i;
  26. if(max_r!=k)// 与第k行交换
  27. for(int j=col;j<m+;j++)
  28. swap(a[k][j], a[max_r][j]);
  29. if(!a[k][col])// 说明该col列第k行以下全是0了
  30. {
  31. k--;
  32. free_x[num++]=col;
  33. continue;
  34. }
  35. for(int i=k+;i<n;i++)// 枚举要删除的行
  36. if(a[i][col])
  37. for(int j=col;j<m+;j++)
  38. a[i][j]^=a[k][j];
  39. }
  40.  
  41. // debug();
  42. // printf("%d %d\n", col, k);
  43.  
  44. for(int i=k;i<n;i++)
  45. if(a[i][col])
  46. return -; // 无解
  47.  
  48. // if(k<m) //m-k为自由未知量个数
  49. // {
  50. int stat=<<(m-k);
  51. int ans=INT_MAX;
  52. for(int i=;i<stat;i++)
  53. {
  54. int cnt=;
  55. for(int j=;j<m-k;j++)
  56. if(i&(<<j))
  57. {
  58. x[free_x[j]]=;
  59. cnt++;
  60. }
  61. else
  62. x[free_x[j]]=;
  63. for(int j=k-;j>=;j--)
  64. {
  65. int tmp;
  66. for(tmp=j;tmp<m;tmp++)
  67. if(a[j][tmp])
  68. break;
  69. x[tmp]=a[j][m];
  70. for(int l=tmp+;l<m;l++)
  71. if(a[j][l])
  72. x[tmp]^=x[l];
  73. cnt+=x[tmp];
  74. }
  75. if(cnt<ans)
  76. ans=cnt;
  77. }
  78. return ans;
  79. // }
  80. //
  81. // // 唯一解 回代
  82. // for(int i=m-1;i>=0;i--)
  83. // {
  84. // x[i]=a[i][m];
  85. // for(int j=i+1;j<m;j++)
  86. // x[i]^=(a[i][j] && x[j]);
  87. // }
  88. // int ans=0;
  89. // for(int i=0;i<n*n;i++)
  90. // ans+=x[i];
  91. // return ans;
  92. }
  93.  
  94. void init()
  95. {
  96. memset(a, , sizeof(a));
  97. memset(x, , sizeof(x));
  98. for(int i=;i<n;i++)
  99. for(int j=;j<n;j++)
  100. {
  101. int t=i*n+j;
  102. a[t][t]=;
  103. if(i>)
  104. a[(i-)*n+j][t]=;
  105. if(i<n-)
  106. a[(i+)*n+j][t]=;
  107. if(j>)
  108. a[i*n+j-][t]=;
  109. if(j<n-)
  110. a[i*n+j+][t]=;
  111. }
  112. }
  113.  
  114. int main()
  115. {
  116. int t;
  117. scanf("%d", &t);
  118. while(t--)
  119. {
  120. scanf("%d", &n);
  121. init();
  122. for(int i=;i<n;i++)
  123. for(int j=;j<n;j++)
  124. {
  125. char ch;
  126. cin>>ch;
  127. a[i*n+j][n*n]=(ch=='w');
  128. }
  129. int t=Gauss(n*n, n*n);
  130. if(t==-)
  131. {
  132. printf("inf\n");
  133. continue ;
  134. }
  135. printf("%d\n", t);
  136. }
  137. return ;
  138. }

POJ 1681

注意 对于无穷解的情况, 初等行变换中的交换会影响判断哪些是自由未知量, 那么就要记录交换

[Gauss]POJ1681 Painter's Problem的更多相关文章

  1. [POJ1681]Painter's Problem(高斯消元,异或方程组,状压枚举)

    题目链接:http://poj.org/problem?id=1681 题意:还是翻格子的题,但是这里有可能出现自由变元,这时候枚举一下就行..(其实这题直接状压枚举就行) /* ━━━━━┒ギリギリ ...

  2. poj1681 Painter's Problem(高斯消元法,染色问题)

    题意: 一个n*n 的木板 ,每个格子 都 可以 染成 白色和黄色,( 一旦我们对也个格子染色 ,他的上下左右都将改变颜色): 给定一个初始状态 , 求将 所有的 格子 染成黄色 最少需要染几次?  ...

  3. POJ1681 Painter's Problem(高斯消元)

    题目看似与线性方程组无关,但可以通过建模转化为线性方程组的问题. 对于一块砖,刷两次是没有必要的,我们令x=1表示刷了一次,x=0没有刷,一共有n*n个,所以相当于有n*n个未知量x. 定义aij表示 ...

  4. poj1681 Painter's Problem

    题目描述: 和那道关灯差不多,求最少涂几次. 题解: 高消,然后深搜枚举自由元更新答案. 貌似这道题没卡贪心但是其他题基本都卡了. 比如$Usaco09Nov$的$lights$ 代码: #inclu ...

  5. Painter's Problem poj1681 高斯消元法

    Painter's Problem Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 4420   Accepted: 2143 ...

  6. POJ 1681 Painter's Problem 【高斯消元 二进制枚举】

    任意门:http://poj.org/problem?id=1681 Painter's Problem Time Limit: 1000MS   Memory Limit: 10000K Total ...

  7. poj 1681 Painter's Problem

    Painter's Problem 题意:给一个n*n(1 <= n <= 15)具有初始颜色(颜色只有yellow&white两种,即01矩阵)的square染色,每次对一个方格 ...

  8. Painter's Problem (高斯消元)

    There is a square wall which is made of n*n small square bricks. Some bricks are white while some br ...

  9. POJ 1681 Painter's Problem(高斯消元+枚举自由变元)

    http://poj.org/problem?id=1681 题意:有一块只有黄白颜色的n*n的板子,每次刷一块格子时,上下左右都会改变颜色,求最少刷几次可以使得全部变成黄色. 思路: 这道题目也就是 ...

随机推荐

  1. 月半小夜曲下的畅想--DOCTYPE模式

    月半小夜曲下的畅想--DOCTYPE模式 @(css3 box-sizing)[doctype声明|quirks模式|妙瞳] DOCTYPE文档类型标签,该标签是将特定的标准通用标记语言或者XML文档 ...

  2. 【转】The content of element type "configuration" must match "(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?...

    [转]The content of element type "configuration" must match "(properties?,settings?,typ ...

  3. c#结束winword.exe进程、

    最近在做一个c#生成word的功能.调用了微软自带的COM组件. 生成完以后发现有一个winword.exe无法关闭.调试或修改代码都没有搞明白.  遂强制关闭进程了. System.Diagnost ...

  4. ASP.NET 4.0 来了

    伴随着VS2010的公开测试,ASP.NET4.0也进入了我们的视线.ASP.NET4.0究竟给我们带来了什么,将在哪些方面提高我们的生产力? 在何时你需要使用ASP.NET4.0开发你的网站程序? ...

  5. 如何在ANDROID JNI 的C++中打Log

    http://blog.csdn.net/pkigavin/article/details/8583537 最近在研究Android 2.3.3源代码的C/C++层,需要对代码进行一些调试,但是奇怪的 ...

  6. 源代码jar包中中文注释乱码

    目前公司开发的多个组件有打包源代码并发布到nexus,但是很多同事通过maven使用组件时,直接通过eclipse浏览源代码时,发现中文注释为乱码的问题.其实这个eclipse默认编码造成的问题.可以 ...

  7. CodeForces 527B

    Description Ford Prefect got a job as a web developer for a small company that makes towels. His cur ...

  8. TimesTen ODBC 链接库差异及相关命令行工具的使用注意事项

    1. TimesTen有两种访问模式:Direct模式和Client/Server模式,以下为来自Operations Guide 的描述 Connecting using TimesTen ODBC ...

  9. c++学习笔记1(c++简介)

    c++和c的不同: 1,c++是c的扩充. 2,在解决问题时思维方式的不同.(c++采用面向对象思维,c面向结构思维) 面向结构思维:将一个大程序拆分成一个个很小的结构.每个结构完成一个或多个功能,所 ...

  10. 关于使用工具类org.apache.commons.collections.ListUtils合并List的问题

    今天在做项目时,需要将几个List进行合并,于是就用到了apache提供关于List操作的工具类ListUtils,但是在使用的过程中发现一些问题. public static void main(S ...