POJ---3274-Gold Balanced Lineup(hash)

来源:互联网 发布:php开发框架 编辑:程序博客网 时间:2024/05/29 09:50

Language:
Gold Balanced Lineup
Time Limit: 2000MS Memory Limit: 65536KTotal Submissions: 13383 Accepted: 3911

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 theK 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 37672142

Sample Output

4

Hint

In the range from cow #3 to cow #6 (of size 4), each feature appears in exactly 2 cows in this range

Source

USACO 2007 March Gold




#include <iostream>#include <cmath>#include <algorithm>#include <cstdio>#include <cstring>#include <vector>using namespace std;const int size=100001;const int mod=99991;int sum[size][30];int map[size][30];int n,m;int MaxLen;vector<int> hash[mod];bool cmp(int ai,int bi){    for(int j=0; j<m; j++)        if(map[ai][j]!=map[bi][j])            return false;    return true;}void Hash(int x){    int i,j;    int key=0;    for(j=1; j<m; j++)        key+=map[x][j]*j;    key=abs(key)%mod;    for(i=0; i<hash[key].size(); ++i)    {        if(cmp(hash[key][i],x))        {            if(MaxLen<x-hash[key][i])                MaxLen=x-hash[key][i];            return;        }    }    hash[key].push_back(x);    return;}int main(){    int i,j,x,num01;    while(scanf("%d%d",&n,&m)!=EOF)    {        for(i=0; i<m; i++)        {            map[0][i]=0;            sum[0][i]=0;        }        hash[0].push_back(0);        MaxLen=0;        for(i=1; i<=n; i++)        {            scanf("%d",&x);            for(j=0; j<m; j++)            {                num01=x%2;                x/=2;                sum[i][j]=sum[i-1][j]+num01;                map[i][j]=sum[i][j]-sum[i][0];            }            Hash(i);        }        printf("%d\n",MaxLen);    }    return 0;}



0 0
原创粉丝点击