博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVa 11464 Even Parity
阅读量:5136 次
发布时间:2019-06-13

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

题意:给出n*n的01矩阵,将尽量少的0变成1,使得每个元素的上下左右的元素的和为偶数

看的白书的思路,二进制枚举第一行,再依次算出改变元素的个数,

自己写的时候发现这里不会写,“每个元素的上下左右的元素”

大概就是这个意思

 

真是太捉急了的说-----------5555

1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 using namespace std;12 13 typedef long long LL;14 const int INF = (1<<30)-1;15 const int mod=1000000007;16 const int maxn=1000005;17 18 int n;19 int a[55][55];20 int b[55][55];21 int ans;22 23 int solve(int s){24 memset(b,0,sizeof(b));25 for(int c = 0; c < n;c++){26 if( s & (1<
< n;r++){31 for(int c = 0;c < n;c++){32 int sum = 0;33 if(r > 1) sum += b[r-2][c];34 if(c < n-1) sum += b[r-1][c+1];35 if(c > 0) sum += b[r-1][c-1];36 b[r][c] = sum % 2;37 if(a[r][c] == 1 && b[r][c] == 0) return INF;38 }39 }40 int cnt = 0;41 for(int i = 0;i < n;i++){42 for(int j = 0;j < n;j++){43 if(a[i][j] != b[i][j]) cnt++;44 }45 }46 return cnt;47 }48 49 int main(){50 int T;51 scanf("%d",&T);52 int kase = 0;53 while(T--){54 memset(a,0,sizeof(a));55 scanf("%d",&n);56 for(int i=0;i
< (1<
View Code

 

 

 

 

 

 

 

 

 

 

加油啊~~~~

gooooooooooooo~~~~~~~~~~

转载于:https://www.cnblogs.com/wuyuewoniu/p/4623213.html

你可能感兴趣的文章
gdb 远程调试 android native 程序
查看>>
多线程常用方法
查看>>
ViewPager 放到ListView HeadView中不显示的问题
查看>>
Web知识简易介绍及HTTP知识总结
查看>>
Net学习日记_ASP.Net_MVC_HtmlHelper_笔记
查看>>
在 Core Data 中存取 transformable 类型的数据
查看>>
ORACLE 最后表数据更新的时间
查看>>
常见公文——决定和请示
查看>>
提高UI设计效率的4个技巧
查看>>
【程序1】
查看>>
docker学习
查看>>
ZOJ 2750 Idiomatic Phrases Game(Dijkstra)
查看>>
shell 逐行比较两个文件的内容是否一样(行数相同)
查看>>
Notepad++运行快捷键的设置
查看>>
11.12
查看>>
cd 你的web根目录 删除所有的PHP文件
查看>>
androidimplementationxorg-server-1.12.1 for android done--xorg-server-1.12.1-issue.txt
查看>>
程序员去人才网待遇是最低??
查看>>
Java乔晓松-oracle的单行函数(日期函数和数字函数)
查看>>
Concurrency(Locking, Blocking and Row Versioning)
查看>>