zoukankan      html  css  js  c++  java
  • Gold Balanced Lineup(哈希表)

    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 10711   Accepted: 3182

    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个二进制长度为k的特征数(十进制),求最大的连续的牛的数目,使这些牛每个特征的总数相等;

    思路:

    先把7个十进制特征数转换为二进制,并逆序存放到特征数组feature[ ][ ],得到:

    7 à 1 1 1

    6 à 0 1 1

    7 à 1 1 1

    2 à 0 1 0

    1 à 1 0 0

    4 à 0 0 1

    2 à 0 1 0

    (行数为cow编号,自上而下从1开始;列数为特征编号,自左到右从0开始)

    再求sum数组,逐行累加得,sum数组为

     1 1 1

    1 2 2

    2 3 3

    2 4 3

    3 4 3

    3 4 4

    3 5 4

    再利用C[i][y]=sum[i][y]-sum[i][0]求C数组,即所有列都减去第一列

    注意C数组有第0行,为全0

     0 0 0 à 第0行

    0 0 0

    0 1 1

    0 1 1

    0 2 1

    0 1 0

    0 1 1

    0 2 1

    显然第2行与第6行相等,均为011,且距离最远,距离为6-2=4,这就是所求。

    但是最大数据有10W个,即10W行,因此不能直接枚举找最大距离,必须用Hash查找相同行,找到相同行再比较最大距离。

    注意C数组的值可能为负数,因此生成key值时要注意保证key为非负数。

      1 #include<stdio.h>
      2 #include<string.h>
      3 #include<algorithm>
      4 using namespace std;
      5 
      6 const int prime = 99991;
      7 struct node
      8 {
      9     int id;
     10     struct node *next;
     11 }*hash[prime];//邻接表
     12 
     13 int sum[100100][32];//从第一头牛到第i头牛,特征j总共出现了sum[i][j]次;
     14 int c[100100][32];//c[i][j] = sum[i][j] - sum[i][0];
     15 int n,k,maxlen;
     16 
     17 bool check(int x, int y)
     18 {
     19     int i;
     20     for(i = 0; i < k; i++)
     21         if(c[x][i] != c[y][i])
     22             return false;
     23     return true;
     24 }
     25 
     26 void Hash(int ci)//ci代表序列的下标
     27 {
     28     int key = 0,i;
     29     //生成关键字
     30     for(i = 1; i < k; i++)
     31         key += c[ci][i]*i;//key有可能是负值,要取绝对值,对大素数取余;
     32     key = abs(key)%prime;
     33     if(!hash[key])//出现新的key;
     34     {
     35         hash[key] = new struct node;
     36         hash[key]->id = ci;
     37         hash[key]->next = NULL;
     38     }
     39     //当key发生冲突时
     40     else
     41     {
     42         struct node *p = hash[key];
     43         if(check(p->id,ci))
     44         {
     45             int dis = ci-(p->id);
     46             if(dis > maxlen)
     47                 maxlen = dis;//因p->id是从小到大的,所以当遍历有p->id满足时肯定是当前最优的,
     48             return;          //可以return;
     49         
     50         }
     51         else
     52         {
     53             while(p->next)
     54             {
     55                 if(check(p->next->id,ci))
     56                 {
     57                     int dis = ci-(p->next->id);
     58                     if(dis > maxlen)
     59                         maxlen = dis;
     60                     return;
     61 
     62                 }
     63                 p = p->next;
     64             }
     65             //当ci序列与其它序列都不相同时就插到该链的最后;
     66             struct node *tmp = new struct node;
     67             tmp->id = ci;
     68             tmp->next = NULL;
     69             p->next = tmp;
     70         }
     71     }
     72     return;
     73 }
     74 int main()
     75 {
     76     int i,j;
     77     while(~scanf("%d %d",&n,&k))
     78     {
     79         for(i = 0; i < k; i++)
     80         {
     81             sum[0][i] = 0;
     82             c[0][i] = 0;//第0头牛初始化
     83         }
     84         memset(hash,0,sizeof(hash));
     85         Hash(0);//把第0头牛放入哈希表
     86         maxlen = 0;
     87         for( i = 1; i <= n; i++)
     88         {
     89             int x;
     90             scanf("%d",&x);
     91             for(j = 0; j < k; j++)
     92             {
     93                 sum[i][j] = sum[i-1][j] + x%2;
     94                 c[i][j] = sum[i][j]-sum[i][0];
     95                 x = x/2;
     96             }
     97             Hash(i);
     98         }
     99         printf("%d
    ",maxlen);
    100     }
    101     return 0;
    102 }
    View Code
     
  • 相关阅读:
    正则表达式分组替换注意
    L2 正则化的直观理解
    git版本控制
    callbacks
    validation_data作用
    pandas 对某一列添加过滤
    py-redis 设置过期时间
    什么情况下要做预算会计
    超过一年的一个营业周期是什么意思?
    无形资产为什么属于非流动资产
  • 原文地址:https://www.cnblogs.com/LK1994/p/3260770.html
Copyright © 2011-2022 走看看