博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForces - 986C AND Graph
阅读量:5150 次
发布时间:2019-06-13

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

    不难想到,x有边连出的一定是 (2^n-1) ^ x 的一个子集,直接连子集复杂度是爆炸的。。。但是我们可以一个1一个1的消去,最后变成补集的一个子集。

    但是必须当且仅当 至少有一个 a 等于 x 的时候, 可以直接dfs(all ^ x) ,否则直接消1连边。。。

 

Discription

You are given a set of size mm with integer elements between 00 and 2n12n−1 inclusive. Let's build an undirected graph on these integers in the following way: connect two integers xx and yy with an edge if and only if x&y=0x&y=0. Here && is the . Count the number of connected components in that graph.

Input

In the first line of input there are two integers nn and mm (0n220≤n≤22, 1m2n1≤m≤2n).

In the second line there are mm integers a1,a2,,ama1,a2,…,am (0ai<2n0≤ai<2n) — the elements of the set. All aiai are distinct.

Output

Print the number of connected components.

Examples

Input
2 3 1 2 3
Output
2
Input
5 5 5 19 10 20 12
Output
2

Note

Graph from first sample:

Graph from second sample:

 

#include
#define ll long longusing namespace std;const int maxn=5000005;int ci[233],T,n,a[maxn],ans,all;bool v[maxn],isp[maxn];inline int read(){ int x=0; char ch=getchar(); for(;!isdigit(ch);ch=getchar()); for(;isdigit(ch);ch=getchar()) x=x*10+ch-'0'; return x;}void dfs(int x){ if(v[x]) return; v[x]=1; if(isp[x]) dfs(all^x); for(int i=0;i<=T;i++) if(ci[i]&x) dfs(x^ci[i]);}inline void solve(){ for(int i=1;i<=n;i++) if(!v[a[i]]){ ans++,v[a[i]]=1,dfs(all^a[i]); }}int main(){ ci[0]=1; for(int i=1;i<=22;i++) ci[i]=ci[i-1]<<1; T=read(),n=read(),all=ci[T]-1; for(int i=1;i<=n;i++) a[i]=read(),isp[a[i]]=1; solve(); printf("%d\n",ans); return 0;}

  

转载于:https://www.cnblogs.com/JYYHH/p/9112798.html

你可能感兴趣的文章
WebForm——IIS服务器、开发方式和简单基础
查看>>
[转]《城南旧事》里的《送别》
查看>>
django知识点总结
查看>>
C++ STL stack、queue和vector的使用
查看>>
OAuth2 .net MVC实现获取token
查看>>
java中XML操作:xml与string互转、读取XML文档节点及对XML节点增删改查
查看>>
使用Reporting Services时遇到的小问题
查看>>
约瑟夫问题
查看>>
Arduino 报错总结
查看>>
树莓派Android Things物联网开发:树莓派GPIO引脚图
查看>>
作业1:求500到1000之间有多少个素数,并打印出来
查看>>
矩阵快速幂---BestCoder Round#8 1002
查看>>
js兼容公用方法
查看>>
如何将应用完美迁移至Android P版本
查看>>
【转】清空mysql一个库中的所有表的数据
查看>>
基于wxPython的python代码统计工具
查看>>
淘宝JAVA中间件Diamond详解(一)---简介&快速使用
查看>>
Hadoop HBase概念学习系列之HBase里的宽表设计概念(表设计)(二十七)
查看>>
Kettle学习系列之Kettle能做什么?(三)
查看>>
【Mac + GitHub】之在另一台Mac电脑上下载GitHub的SSH链接报错
查看>>