首页 > 其他分享 >[ABC220H] Security Camera(FWT)

[ABC220H] Security Camera(FWT)

时间:2024-12-26 14:59:57浏览次数:4  
标签:ABC220H puts sum cap FWT Security include define

题意

给定一张 \(n\) 点 \(m\) 边的无向图,每个点都有权值 0,你现在要将一部分点的权值变成 1,使得边的两端的权值的按位或和为 1 的边的数量为偶数,求方案数。

\(n\le 40\)

分析

由于我是来学 FWT 的,所以不考虑线性代数。

不难发现题意可以转化成求边的两端权值都为 0 的边的数量为偶数的方案数。

\(n\le 40\) 一脸的折半啊,枚举前一半和后一半选哪些点,并让这些点权值设成 0。

下文称“左部边”为边的两端都为左部点的边,“右部边”同理,“中部边”则表示既不是左部边也不是右部边的边。

我们需要求 \(f_S\) 表示左部边两端都在 \(S\) 内的边数的奇偶性,\(g_S\) 同理表示右边,精细实现可以在 \(O(2^nn)\) 的复杂度内求出。

接着考虑所有中部边。本题最关键的一步,设 \(p_S\) 表示左边选 \(S\) 时右部点中与 \(S\) 的连边数为奇数的点集。那么假设右边选 \(T\),则中部边的贡献即为 \(p_S\cap T\)。此时答案转化成 \(\sum_{S,T} [f_S\oplus g_T\oplus (\operatorname{popcount}(p_S\cap T)\bmod 2)\oplus (m\bmod 2)=0]\)。

考虑枚举 \(f_S,g_T\) 的值,则能计入答案的 \(\operatorname{popcount}(p_S\cap T)\) 的奇偶性固定。不妨设 \(a_R=\sum_{S,T}[p_S\cap T=R][f_S=x][g_T=y]\),发现把第一项扔掉后 \(S,T\) 之间的计算是独立的,不妨再设 \(b_T=\sum_S[p_S=T][f_S=x],c_T=[g_T=y]\),则 \(a_R=\sum_{S\cap T=R}b_Sc_T\),这就是 AND-FWT 形式,时间复杂度 \(O(n2^n)\)。

代码:

点击查看代码
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<cmath>
#include<map>
#include<unordered_map>
#include<vector>
#include<queue>
#include<stack>
#include<bitset>
#include<set>
#include<ctime>
#include<random>
#include<cassert>
#define x1 xx1
#define y1 yy1
#define IOS ios::sync_with_stdio(false)
#define ITIE cin.tie(0);
#define OTIE cout.tie(0);
#define PY puts("Yes")
#define PN puts("No")
#define PW puts("-1")
#define P0 puts("0")
#define P__ puts("")
#define PU puts("--------------------")
#define mp make_pair
#define fi first
#define se second
#define gc getchar
#define pc putchar
#define pb emplace_back
#define un using namespace
#define il inline
#define all(x) x.begin(),x.end()
#define mem(x,y) memset(x,y,sizeof x)
#define popc __builtin_popcountll
#define rep(a,b,c) for(int a=(b);a<=(c);++a)
#define per(a,b,c) for(int a=(b);a>=(c);--a)
#define reprange(a,b,c,d) for(int a=(b);a<=(c);a+=(d))
#define perrange(a,b,c,d) for(int a=(b);a>=(c);a-=(d))
#define graph(i,j,k,l) for(int i=k[j];i;i=l[i].nxt)
#define lowbit(x) ((x)&-(x))
#define lson(x) ((x)<<1)
#define rson(x) ((x)<<1|1)
//#define double long double
#define int long long
//#define int __int128
using namespace std;
using i64=long long;
using u64=unsigned long long;
using pii=pair<int,int>;
template<typename T1,typename T2>inline void ckmx(T1 &x,T2 y){x=x>y?x:y;}
template<typename T1,typename T2>inline void ckmn(T1 &x,T2 y){x=x<y?x:y;}
inline auto rd(){
	int qwqx=0,qwqf=1;char ch=getchar();
	while(ch<'0'||ch>'9'){if(ch=='-')qwqf=-1;ch=getchar();}
	while(ch>='0'&&ch<='9'){qwqx=(qwqx<<1)+(qwqx<<3)+ch-48;ch=getchar();}return qwqx*qwqf;
}
template<typename T>inline void write(T qwqx,char ch='\n'){
	if(qwqx<0){qwqx=-qwqx;putchar('-');}
	int qwqy=0;char qwqz[40];
	while(qwqx||!qwqy){qwqz[qwqy++]=qwqx%10+48;qwqx/=10;}
	while(qwqy--)putchar(qwqz[qwqy]);if(ch)putchar(ch);
}
bool Mbg;
const int maxn=45,maxm=1048576,inf=0x3f3f3f3f;
const long long llinf=0x3f3f3f3f3f3f3f3f;
int n,n0,n1,m;
bool vis[maxn][maxn];
int cnt[maxm];
int p[maxm];
const int AND[2][2]={{1,1},{0,1}},IAND[2][2]={{1,-1},{0,1}};
inline void fwt(int n,int *arr,const int C[2][2]){
	for(int len=1;len<n;len<<=1){
		reprange(i,0,n-1,len<<1){
			rep(j,i,i+len-1){
				int x=arr[j],y=arr[j+len];
				arr[j]=C[0][0]*x+C[0][1]*y,arr[j+len]=C[1][0]*x+C[1][1]*y;
			}
		}
	}
}
inline void mul(int n,int *arr,int *brr){
	fwt(n,arr,AND),fwt(n,brr,AND);
	rep(i,0,n-1)arr[i]*=brr[i];
	fwt(n,arr,IAND);
}
bool f[maxm],g[maxm];
int e[maxn];
int a[maxm],b[maxm];
inline void solve_the_problem(){
	n=rd(),m=rd(),n0=n/2,n1=n-n0;
	rep(i,1,m){
		int x=rd(),y=rd();
		vis[x][y]=vis[y][x]=1;
		if(x<=n0&&y<=n0){
			e[x]|=(1<<(y-1)),e[y]|=(1<<(x-1));
		}
		if(x>n0&&y>n0){
			e[x]|=(1<<(y-n0-1)),e[y]|=(1<<(x-n0-1));
		}
	}
	rep(i,n0+1,n){
		mem(cnt,0);
		rep(S,1,(1<<n0)-1){
			int q=__builtin_ctz(S);
			cnt[S]=cnt[S^(1<<q)]+vis[i][q+1];
			if(cnt[S]&1)p[S]|=(1<<(i-n0-1));
		}
	}
	rep(S,0,(1<<n0)-1){
		int T=0;
		rep(i,1,n0)if((S>>(i-1))&1){
			f[S]^=popc(e[i]&T)&1;
			T|=(1<<(i-1));
		}
	}
	rep(S,0,(1<<n1)-1){
		int T=0;
		rep(i,n0+1,n)if((S>>(i-n0-1))&1){
			g[S]^=popc(e[i]&T)&1;
			T|=(1<<(i-n0-1));
		}
	}
	int ans=0;
	const int len=1<<n1; 
	rep(x,0,1)rep(y,0,1){
		rep(i,0,len-1)a[i]=b[i]=0;
		rep(S,0,(1<<n0)-1)a[p[S]]+=f[S]^x^1;
		rep(S,0,len-1)b[S]=g[S]^y^1;
//		rep(i,0,len-1)write(a[i],32);P__;
//		rep(i,0,len-1)write(b[i],32);P__;
		mul(len,a,b);
//		rep(i,0,len-1)write(a[i],32);P__;
		rep(S,0,len-1){
			if((popc(S)&1)^x^y^(m&1))continue;
			ans+=a[S];
		}
	}
	write(ans);
}
bool Med;
signed main(){
//	freopen(".in","r",stdin);freopen(".out","w",stdout);
	fprintf(stderr,"%.3lfMB\n",(&Mbg-&Med)/1048576.0);
	int _=1;
	while(_--)solve_the_problem();
}
/*

*/

标签:ABC220H,puts,sum,cap,FWT,Security,include,define
From: https://www.cnblogs.com/dcytrl/p/18632858

相关文章

  • 信息安全软件解决方案 — INTEWORK-EAS-CyberSecurity
    概述    近年来,由于汽车电子化和信息化的快速发展,其面临的网络安全攻击的手段和风险在不断增加。为有效防御网络入侵和非法数据篡改,保障用户人身和数据隐私安全,汽车信息安全领域的防御技术和相关标准化组织与法律法规也在同步加强。    经纬恒润提供的信息安全软......
  • 基于 Spring Boot、MyBatis Plus、MySQL、HTML、CSS、JavaScript、Vue.js、Redis 与 S
    1.项目概述1.1项目目标为学生提供个性化课程推荐,助力高效选课。构建师生交流社区,促进课程相关交流。实现课程与用户信息的高效管理。1.2功能概述用户管理:包括注册、登录、信息修改、角色管理。课程管理:课程发布、查询、修改、删除、选课操作、评价与推荐。交流社区:课......
  • tryhackme-Cyber Security 101-Search Skills(搜索技能)
    由于之前的的preSecurity学习,所以直接开始第一个搜索学习。任务1:Introduction(介绍)在Google上快速搜索“learncybersecurity”返回了大约6亿次点击,而搜索“learnhacking”返回了这个数字的两倍多!当你穿过这个房间时,这个数字可能会进一步增加。我们被信息所包围。面......
  • Java 项目实战:基于 Spring Boot、MyBatis、PageHelper、Spring Security、FastJSON、S
    一、系统概述1.1系统目标本系统的主要目标是提供一个集成化的商品管理平台,实现以下功能:高效的商品信息管理,包括商品的基本信息、类型、供应商、客户等的录入、查询、修改和删除。精确的采购流程管理,涵盖采购订单的创建、修改、查询、入库操作以及与供应商的信息关联。完善......
  • 实用分享之Nginx日志安全分析脚本(Practical Sharing of Nginx Log Security Analysis
    实用分享,Nginx日志安全分析脚本简介Nginx日志安全分析是确保Web服务器安全的关键步骤。通过对Nginx日志进行深入分析,可以及时发现潜在的安全威胁,如异常访问、恶意请求等。利用日志分析工具,能够快速定位问题,并采取相应的安全措施,保障服务器的稳定运行和数据安全。Nginx日志......
  • Spring Security
    一、使用SpringSecurity导入依赖,改密码SpringSecurity6.x的认证实现流程如下:用户提交登录请求1.SpringSecurity将请求交给UsernamePasswordAuthenticationFilter过滤器处理。2.UsernamePasswordAuthenticationFilter获取请求中的用户名和密码,并生成一个  ......
  • COM398 Systems Security
    COM398SystemsSecurity60%OFTHETOTAL MARKSubmission Date:                           9th  December 2024 (12:00(Noon) UK time)Date returnedwithfeedback:    Withintwentyworkingdaysafter the submission dea......
  • spring-boot-starter-security放行全部请求
    SpringBoot项目中加了spring-boot-starter-security默认会把全部请求设置要求登录。<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-security</artifactId></dependency>系统自动建一个user用户,密码随机如果想......
  • Spring Security集成的详细步骤
    一、项目依赖配置Maven项目如果使用Maven构建项目,需要在项目的pom.xml文件中添加SpringSecurity的依赖。通常包括spring-security-web和spring-security-config。<dependency><groupId>org.springframework.security</groupId><artifactId>spring-security-web<......
  • tryhackme-Pre Security-What is Networking?(计算机网络基础)
    任务一:WhatisNetworking?(什么是网络)网络就是连接的事物,在计算机中,网络也是相同的概念的,只不过说,他分撒在了各种设备上面,通过这些设备连接,并且遵循一定的规则,我们可以交流。显然答案就是:网络任务二: WhatistheInternet?(什么是互联网)根据上面我了解到了什么是网络 ,也......