bzoj3198【SDOI2013】spring

3198: [Sdoi2013]spring

Time Limit: 40 Sec  Memory Limit: 256 MB

Submit: 725  Solved: 216

[Submit][Status][Discuss]

Description

Input

Output

Sample Input

3 3

1 2 3 4 5 6

1 2 3 0 0 0

0 0 0 4 5 6

Sample Output

2

HINT

Dragonite修正数据

Source

Hash

容斥原理+哈希

枚举限定哪些位置相同,然后用哈希计算每种子串的出现个数,可以计算出至少有i个位置相同的数对个数,用f[i]表示。时间复杂度O(2^6*n)。

注意:哈希要判断冲突…坑爹题目

最终答案ans=∑f[i]*C(i,k)*(-1)^(i-k),k≤i≤n。

这是为什么呢?

一个简单证明:假设两个串实际有x个位置相同,它在f[i]中被乘了C(x,i)*(-1)^(i-k)。所以它对答案的贡献是∑C(x,i)*C(i,k)*(-1)^(i-k),k≤i≤x。可以证明这个式子在k=x的时候等于1,在k<x的时候等于0。这个自己随便推推就看出来了,有公式恐惧症的人实在懒得写…

所以最后答案里只会有恰好k的位置相同的。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<cstdlib>
#include<algorithm>
#define F(i,j,n) for(int i=j;i<=n;i++)
#define D(i,j,n) for(int i=j;i>=n;i--)
#define ll long long
#define ull unsigned long long
#define maxn 500100
#define base 233
#define mod 1234567
using namespace std;
int n,k,a[maxn][10],c[10][10],cnt[100];
ll ans;
inline int read()
{
	int x=0,f=1;char ch=getchar();
	while (ch<'0'||ch>'9'){if (ch=='-') f=-1;ch=getchar();}
	while (ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
	return x*f;
}
inline bool judge(int x,int y,int tmp)
{
	F(i,1,6) if ((tmp&(1<<(i-1)))&&a[x][i]!=a[y][i]) return false;
	return true;
}
struct hash//哈希判断冲突
{
	int tot,f[mod+10],q[mod+10],id[mod+10];
	ll calc()
	{
		ll ret=0;
		for (int i=1;i<=tot;i++) ret+=(ll)f[q[i]]*(f[q[i]]-1)/2,f[q[i]]=id[q[i]]=0;
		tot=0;
		return ret;
	}
	void insert(int tmp,int pos,int state)
	{
		while (id[tmp]&&(!judge(id[tmp],pos,state))) tmp=(tmp+1)%mod;
		if (!id[tmp]) q[++tot]=tmp,id[tmp]=pos;
		f[tmp]++;
	}
}h;
ll calc(int state)
{
	F(i,1,n)
	{
		ll tmp=0;
		F(j,1,6)
		{
			tmp=tmp*base%mod;
			if ((1<<(j-1))&state) tmp=(tmp+a[i][j]+1)%mod;
		}
		h.insert(tmp,i,state);
	}
	return h.calc();
}
int main()
{
	n=read();k=read();
	F(i,1,n) F(j,1,6) a[i][j]=read();
	c[0][0]=1;
	F(i,1,6)
	{
		c[i][0]=1;
		F(j,1,i) c[i][j]=c[i-1][j-1]+c[i-1][j];
	}
	F(i,1,63) cnt[i]=cnt[i>>1]+(i&1);
	F(i,0,63) if (cnt[i]>=k)
	{
		ll t=((cnt[i]-k)&1)?-1:1;
		ans+=t*calc(i)*c[cnt[i]][k];
	}
	printf("%lld\n",ans);
	return 0;
}
时间: 2024-10-01 04:10:43

bzoj3198【SDOI2013】spring的相关文章

【原】Spring activiti 环境搭建之数据库创建

由于在开发工作流的时候,避免不了要保存一些数据和流程走向;所以在搭建Spring activiti开发环境的时候需要把官方提供的23张表创建到我们的DB,后续的流程都会在这些表中记录. 1.创建代码如下: @Test public void createactivityTable(){ ProcessEngineConfiguration p = ProcessEngineConfiguration.createStandaloneInMemProcessEngineConfiguration(

【转】Spring中事务与aop的先后顺序问题

[原文链接] http://my.oschina.net/HuifengWang/blog/304188 [正文] Spring中的事务是通过aop来实现的,当我们自己写aop拦截的时候,会遇到跟spring的事务aop执行的先后顺序问题,比如说动态切换数据源的问题,如果事务在前,数据源切换在后,会导致数据源切换失效,所以就用到了Order(排序)这个关键字. 步骤01:    我们可以通过在@AspectJ的方法中实现org.springframework.core.Ordered 这个接口来

【转载】Spring中的applicationContext.xml与SpringMVC的xxx-servlet.xml的区别

一直搞不明白两者的区别. 如果使用了SpringMVC,事实上,bean的配置完全可以在xxx-servlet.xml中进行配置.为什么需要applicationContext.xml?一定必须? 一. 因为直接使用了SpringMVC,所以之前一直不明白xxx-servlet.xml和applicationContext.xml是如何区别的,其实如果直接使用SpringMVC是可以不添加applicationContext.xml文件的. 使用applicationContext.xml文件时

【转载】Spring中DispatcherServlet与ContextLoaderListener的区别

昨天在写springmvc的时候,在web.xml中配置了DispatcherServlet,如下: <servlet> <servlet-name>DispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>

【转载】Spring加载resource时classpath*:与classpath:的区别

免责声明:     本文转自网络文章,转载此文章仅为个人收藏,分享知识,如有侵权,请联系博主进行删除.     原文作者:kyfxbl     原文地址: spring配置中classpath和classpath*的区别   在spring配置文件里,可以用classpath:前缀,来从classpath中加载资源  比如在src下有一个jdbc.properties的文件,可以用如下方法加载: <bean id="propertyConfigurer" class="

【SpringBoot】Spring Boot Configuration Annotation Processor not found in classpath

Question: [SpringBoot]Spring Boot Configuration Annotation Processor not found in classpath sloution: maven方式: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId&

【原】Spring整合Redis(第一篇)—SDR简述

1.SDR说明 Spring Data Redis(SDR),是SpringFramework提供的一套简化访问Redis的API,是对Jedis的又一层封装. SDR集成了Jedis,JRedis,SRP,Lettuce这四种开源的Redis Connector,这些Connector都是针对于Redis的开源Java库.其中,JRedis和SRP从spring-data-redis1.7开始,就不支持了. 2.RedisTemplate说明 RedisTemplate是SDR的一个核心Hel

【原】Spring整合Redis(第三篇)—SDR搭建中易出现的错误

易错点01:Spring版本过低导致的错误[环境参数]Redis版本:redis-2.4.5-win32-win64Spring原来的版本:4.1.7.RELEASESpring修改后的版本:4.2.6.RELEASE [障碍描述]Question:NoSuchMethodErrorInvocation of init method failed; nested exception is java.lang.NoSuchMethodError: org.springframework.core.

【转】Spring boot 打成jar包问题总结

http://www.cnblogs.com/xingzc/p/5972488.html 1.Unable to find a single main class from the following candidates 1.1.问题描述 maven build时出现以下错误提示日志: [ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.3.5.RELEASE:repackage