POJ3274Gold Balanced Lineup(哈希)

Gold Balanced Lineup
Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 10360 Accepted: 3086

Description

Farmer John's N cows (1 ≤ N ≤ 100,000) share many similarities. In fact, FJ has been able to narrow down the list of features shared by his cows to a list of only K different features (1 ≤ K ≤ 30). For example, cows exhibiting feature #1 might have spots, cows exhibiting feature #2 might prefer C to Pascal, and so on.

FJ has even devised a concise way to describe each cow in terms of its "feature ID", a single K-bit integer whose binary representation tells us the set of features exhibited by the cow. As an example, suppose a cow has feature ID = 13. Since 13 written in binary is 1101, this means our cow exhibits features 1, 3, and 4 (reading right to left), but not feature 2. More generally, we find a 1 in the 2^(i-1) place if a cow exhibits feature i.

Always the sensitive fellow, FJ lined up cows 1..N in a long row and noticed that certain ranges of cows are somewhat "balanced" in terms of the features the exhibit. A contiguous range of cows i..j is balanced if each of the K possible features is exhibited by the same number of cows in the range. FJ is curious as to the size of the largest balanced range of cows. See if you can determine it.

Input

Line 1: Two space-separated integers, N and K.
Lines 2..N+1: Line i+1 contains a single K-bit integer specifying the features present in cow i. The least-significant bit of this integer is 1 if the cow exhibits feature #1, and the most-significant bit is 1 if the cow exhibits feature #K.

Output

Line 1: A single integer giving the size of the largest contiguous balanced group of cows.

Sample Input

7 3
7
6
7
2
1
4
2

Sample Output

4

题目大意就是说n个数,表示n头牛所具有的特性,在化为二进制之后哪一位是1表示具有哪种特性,问最长连续有多少个牛,它们所有每一种特性的和相等,如:
7->1 1 1
6->1 1 0
7->1 1 1
2->0 1 0
1->0 0 1
4->1 0 0
2->0 1 0
这样的话从第3行到第6行共4行的长度,它们3种特性的和都为2

大概意思就是:

数组sum[i][j]表示从第1到第i头cow属性j的出现次数。

所以题目要求等价为:

求满足

sum[i][0]-sum[j][0]=sum[i][1]-sum[j][1]=.....=sum[i][k-1]-sum[j][k-1] (j<i)

中最大的i-j

 

将上式变换可得到

sum[i][1]-sum[i][0] = sum[j][1]-sum[j][0]

sum[i][2]-sum[i][0] = sum[j][2]-sum[j][0]

......

sum[i][k-1]-sum[i][0] = sum[j][k-1]-sum[j][0]

 

令C[i][y]=sum[i][y]-sum[i][0] (0<y<k)

初始条件C[0][0~k-1]=0

 

所以只需求满足C[i][]==C[j][] 中最大的i-j,其中0<=j<i<=n。

C[i][]==C[j][] 即二维数组C[][]第i行与第j行对应列的值相等,

那么原题就转化为求C数组中 相等且相隔最远的两行的距离i-j

 

这样的话就只需要对数组c进行哈希,下面是网上借鉴来的哈希函数

 inline int hashcode(const int *v){int s = 0;for(int i=0; i<k; i++)s=((s<<2)+(v[i]>>4))^(v[i]<<10);s = s % M;s = s < 0 ? s + M : s;return s;}


另外,在寻找最长满足条件区间长度的时候,我用了一个数组min_index来存放两行相同时上面一行的下标。最初min_index[i]=i.之后一旦找到一个c[j]=c[i],那么min_index[j]=min_index[i].这样的话最大的i-min_index[i]就是最常去肩长度。
当然,还有更多较好的方法,如用结构体放最长长度,一边插入就可以一边找到最大长度。
下面附上代码:
  1 #include<stdio.h>
  2 #include<string.h>
  3 #include<math.h>
  4 #define mem(a) memset(a,0,sizeof(a))
  5 #define MAX 100005
  6 #define maxn 107777
  7 
  8 int hash[maxn+5],next[MAX],c[MAX][32],min_index[MAX];
  9 int n,k;
 10 
 11 int abss(int a)//坑爹的code block,不能直接调用abs
 12 {
 13     return a>=0?a:-a;
 14 }
 15 
 16 bool judge(int a,int b)//判断两行是否相同
 17 {
 18     int i;
 19     for(i=0;i<k;i++)
 20     {
 21         if(c[a][i]!=c[b][i])return false;
 22     }
 23     return true;
 24 }
 25 
 26 inline int hashcode(const int *v)//哈希函数
 27 {
 28     int s = 0;
 29      for(int i=0; i<k; i++)
 30          s=((s<<2)+(v[i]>>4))^(v[i]<<10);
 31      s = s % maxn;
 32      s = s < 0 ? s + maxn : s;
 33      return s;
 34 }
 35 
 36 bool all_0(int index)//判断这一行是不是全部为0,
 37                     //是的话那么它与他之前的所有行组合起来可以满足条件
 38 {
 39     int i;
 40     for(i=0;i<k;i++)
 41     {
 42         if(c[index][i]!=0)return false;
 43     }
 44     return true;
 45 }
 46 
 47 void insert(int index)//插入第index行的c[index]
 48 {
 49     int h=hashcode(c[index]);
 50     if(!h)//这一行里面全是 0
 51     {
 52         if(all_0(index)){
 53             min_index[index]=0;
 54             return ;
 55         }
 56     }
 57     int u=hash[h];
 58     if(!u)
 59     {
 60         min_index[index]=index;
 61         hash[h]=index;
 62         return;
 63     }
 64     while(u)
 65     {
 66         if(judge(index,u))//如果找到一行与这行相同,就把这条链最小下标传过去
 67         {
 68             min_index[index]=min_index[u];
 69             return;
 70         }
 71         u=next[u];
 72     }
 73     min_index[index]=index;
 74     next[index]=hash[h];
 75     hash[h]=index;
 76 }
 77 
 78 int main()
 79 {
 80  //   freopen("in.txt","r",stdin);
 81  //   freopen("out1.txt","w",stdout);
 82     while(~scanf("%d%d",&n,&k))
 83     {
 84         mem(hash);
 85         mem(next);
 86         mem(min_index);
 87         mem(c);
 88 
 89         int sum[32]={0},i,j,num;
 90         for(i=1;i<=n;i++)
 91         {
 92             scanf("%d",&num);
 93             for(j=0;j<k;j++)
 94             {
 95                 sum[j]+=( ( (1<<j)&(num) )?1:0 );
 96                 c[i][j]=sum[j]-sum[0];
 97             }
 98             insert(i);
 99         }
100         int max=0;
101         for(i=1;i<=n;i++)
102         {
103             max=max>(i-min_index[i])?max:(i-min_index[i]);
104         }
105         printf("%d\n",max);
106     }
107     return 0;
108 }

 

转载于:https://www.cnblogs.com/gj-Acit/archive/2013/05/20/3089047.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/462505.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

把一个数据库的数据插入到另外一个数据库

insert into t1 select * from shujuku1.dbo.t2; 原网址&#xff1a;http://topic.csdn.net/u/20080312/10/5c5ac5a3-32db-4693-ac70-99d8c62694d8.html

ubuntu 下mysql的常用命令

MySQL数据库的基本操作命令 一、mysql服务操作 0、查看数据库版本 sql-> status;1、net start mysql //启动mysql服务 2、net stop mysql //停止mysql服务  3、mysql -h主机地址 -u用户名 &#xff0d;p用户密码 //进入mysql数据库 4、quit //退出mysql操作 5、mysqladmin…

编写类-餐馆类

# Author Eric Zhao # -*- coding:utf-8 -*-class Restaurant(): """ 餐馆类 """ def __init__(self,restaurant_name,cuisine_type): """ 始化属性 restaurant,cuisine_type """ self.resta…

Dalvik虚拟机简要介绍和学习计划

出自&#xff1a;http://blog.csdn.net/luoshengyang/article/details/8852432 我们知道&#xff0c;Android应用程序是运行在Dalvik虚拟机里面的&#xff0c;并且每一个应用程序对应有一个单独的Dalvik虚拟机实例。除了指令集和类文件格式不同&#xff0c;Dalvik虚拟机与Java虚…

chrome扩展之3:一步步跟我学开发一个表单填写扩展

这节课实现的效果如下图所示: 我们先想一想&#xff0c;怎么样才可以在搜索框上输入内容呢&#xff0c;当然可以手动输入^_^&#xff0c;除了这个之外呢?如果您有这个页面的后台编辑权限就可以直接修改这个页面的内容。当然&#xff0c;这个页面是google的&#xff0c;我们没有…

硬盘快速格式化和格式化的区别

5楼的搞不懂不要瞎答啊&#xff0c;你说的Low level是低级格式化&#xff0c;High level是高级格式化&#xff0c;你讲的是这两者的区别&#xff0c;不要瞎copy,paste。人家问的是快速格式化和普通格式化。这两种都是高级格式化即High level Format,两者的区别在于快速格式化仅…

Oracle Class4. 数据库对象(同义词,序列,视图,索引,簇)

------------------------2013-5-9------------------------索引的建立情况&#xff1a;经常用于查询&#xff0c;排序和分组的列&#xff08;即经常在where,order或group by子句中出现的列&#xff09; 主键索引和复合索引。 desc student;create index i_stu_name on student…

PHPCMS V9爆出多个SQL注入漏洞

phpcms 使用sys_auth函数加解密cookie信息,系统中多个文件直接从cookie中获取变量进入程序流程。 由于sys_auth函数在设计和使用过程中存在缺陷&#xff0c;导致注册用户可以伪造cookie数据&#xff0c;触发SQL注入等多个二次攻击。 看sys_auth函数代码 //libs/functions/globa…

sql 中N'的作用

加上 N 代表存入数据库时以 Unicode 格式存储。Nstring 表示string是个Unicode字符串Unicode 字符串的格式与普通字符串相似&#xff0c;但它前面有一个 N 标识符&#xff08;N 代表 SQL-92 标准中的国际语言 (National Language)&#xff09;。N 前缀必须是大写字母。例如&am…

主流虚拟化产品对比列表01

虚拟化概述厂商MicrosoftVmwareCitrix产品Hyper-V 2012vSphere 5.1XenServer 6.1版本数据中心版企业增强版白金版评估概述Windows Server 2012System Center 2012 &#xff08;数据中心版&#xff09;vSphere 5.1XenServer 6.1成熟度/ 产品上市时间WS2012-2012.9 SC2012sp1-201…

[其它] - 为什么中国的程序员技术偏低

来源&#xff1a;http://www.cnbeta.com/articles/155374.htm 作者:飘飘渺渺首先来说一个高级程序员并非靠自己读几本书写几万行代码就能练就的&#xff0c;我更关注于低层的环境&#xff0c;也就是程序员实实在在的工作环境。因为程序员的高低还得从实际的工作来衡量&#xff…

SQL PROCEDURE和 FUNCTION的区别

FUNCTION 默认是有一个返回值&#xff08;只有一个&#xff0c;当然可以不返回&#xff09;&#xff0c;PROCEDURE通过传入out 参数来传递需要返回的数值&#xff0c;可以多个FUNCTION 可在select语句里直接调用&#xff08;如果FUNCTION 里update,insert,delete 则不行&#x…

数据库中的表还是一定要建索引

上次说到在表中&#xff0c;加了触发器以后&#xff0c;会产生死锁的问题。后来又仔细再研究了一下&#xff0c;发现是没有对where条件面用到的字段建索引引起的&#xff0c;甚至连主键都没有定义。 专门测试了一下没有建索引&#xff0c;每分钟处理3百条&#xff0c;对where条…

mysql 重置root密码

myini文件增加命令 &#xff08;1&#xff09;在my.ini文件的[mysqld]块下增加“skip_grant_tables”&#xff0c;然后重启mysql服务&#xff0c;再以管理员权限打开cmd执行一些列命令重置密码 mysql> use mysql;Database changedmysql> update user set authentication_…

[读书笔记]TCP/IP详解V1读书笔记-3

IP&#xff1a; 无连接&#xff1a;数据报到达没有先后顺序&#xff0c;处理先后发送的数据报之间没有关联。 不可靠&#xff1a;数据报丢失后没有处理&#xff0c;简单向源地址发送 ----------------------------- ---------------------------------- 网络字节序&#xff1a;…

CAL(1)

为什么80%的码农都做不了架构师&#xff1f;>>> CAL(1) BSD General Commands Manual CAL(1) NAME cal - displays a calendar SYNOPSIS cal [-smjy13] [[[day] month] year] DESCRIPTION Cal displays a simple calendar. If arguments …

VS2008制作安装包

图文详细地址&#xff1a;http://www.itwis.com/html/net/kaifagongju/20090218/3387.html VS2008制作安装包 安装与部署 2010-03-13 14:42:21 阅读1610 评论0 字号&#xff1a;大中小 订阅 VS2008制作安装包 一&#xff1a;建立项目 打开VS,点击新建项目,选择:其他项目类型-&…

vbox虚拟机配置Redhat6.4本地yum源

作为一个新手&#xff0c;配置这个yum源配了4天&#xff0c;遇到了各种问题&#xff0c;也按照网络上面一些方法在163上面下载CentOS6的yum源来替换Redhat本地的yum源&#xff0c;但是配置过程中&#xff0c;出现很多错误&#xff0c;发现直接在本地配置yum源会更便捷一点&…

美化系统

作为一个有强迫症都人&#xff0c;对系统都美化一定要做的&#xff01;优雅都环境总给人带来美好都心情&#xff01; 今天参照http://www.linuxidc.com/提供都方法着实把Ubuntu美化了了一下&#xff0c;尤其是shell终端&#xff0c;非常合适俺都口味&#xff01; 上图 转载于:h…

毕业两年返校随想

就西安这个伤心之地我竟然可以连续呆上一周&#xff0c;真是难得。不过还好&#xff0c;有书看&#xff0c;在接连三天且比以前上研时还高的频率出现在母校的自习室后&#xff0c;我发现&#xff0c;原来我是如此地喜欢大学校园。 我全无要抢占“道德制高点”的意思&#xff0…