844B - Rectangles(组合数)
Posted yijiull
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了844B - Rectangles(组合数)相关的知识,希望对你有一定的参考价值。
844B - Rectangles
最多有2^50*2个!!
我也用long long 了,可是移位的时候忘记了,导致溢出,然后一早起来发现被hack了=_=||
1<<temp;
1LL<<temp;
1 #include <bits/stdc++.h> 2 using namespace std; 3 const int maxn=1010; 4 #define ll long long 5 int p[52][52]; 6 int n,m; 7 8 int main(){ 9 while(scanf("%d%d",&n,&m)!=EOF){ 10 ll ans=0; 11 for(int i=0;i<n;i++) 12 for(int j=0;j<m;j++) scanf("%d",&p[i][j]); 13 for(int i=0;i<n;i++){ 14 ll temp=0; 15 for(int j=0;j<m;j++) if(p[i][j]==1) temp++; 16 ans+=(1LL<<temp)-1+(1LL<<(m-temp))-1; 17 } 18 for(int j=0;j<m;j++){ 19 ll temp=0; 20 for(int i=0;i<n;i++) if(p[i][j]==1) temp++; 21 ans+=(1LL<<temp)-1+(1LL<<(n-temp))-1; 22 } 23 printf("%lld\\n",ans-1LL*n*m); 24 } 25 }
以上是关于844B - Rectangles(组合数)的主要内容,如果未能解决你的问题,请参考以下文章
表单(上)EasyUI Form 表单EasyUI Validatebox 验证框EasyUI Combobox 组合框EasyUI Combo 组合EasyUI Combotree 组合树((代码片
Gym - 101982F Rectangles (扫描线+线段树)