• bzoj 1702 贪心,前缀和


    [Usaco2007 Mar]Gold Balanced Lineup 平衡的队列

    Time Limit: 5 Sec  Memory Limit: 64 MB
    Submit: 807  Solved: 317
    [Submit][Status][Discuss]

    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.

    N(1<=N<=100000)头牛,一共K(1<=K<=30)种特色,
    每头牛有多种特色,用二进制01表示它的特色ID。比如特色ID为13(1101),
    则它有第1、3、4种特色。[i,j]段被称为balanced当且仅当K种特色在[i,j]内
    拥有次数相同。求最大的[i,j]段长度。

    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

    INPUT DETAILS:

    The line has 7 cows with 3 features; the table below summarizes the
    correspondence:
    Feature 3: 1 1 1 0 0 1 0
    Feature 2: 1 1 1 1 0 0 1
    Feature 1: 1 0 1 0 1 0 0
    Key: 7 6 7 2 1 4 2
    Cow #: 1 2 3 4 5 6 7

    Sample Output

    4

    OUTPUT DETAILS:

    In the range from cow #3 to cow #6 (of size 4), each feature appears
    in exactly 2 cows in this range:
    Feature 3: 1 0 0 1 -> two total
    Feature 2: 1 1 0 0 -> two total
    Feature 1: 1 0 1 0 -> two total
    Key: 7 2 1 4
    Cow #: 3 4 5 6

    HINT

    鸣谢fjxmyzwd

    Source

     
    题解:多维的前缀和。
     1 #include<iostream>
     2 #include<cstring>
     3 #include<algorithm>
     4 #include<cmath>
     5 #include<cstdio>
     6 using namespace std;
     7 
     8 int k;
     9 int hash[100007][34],mod=100007,a[100001][31],s[100001][31];
    10 
    11 inline bool check(int t,int xt)
    12 {
    13      int i;
    14      bool flag=true;
    15      for(i=0;i<=k-1;i++)
    16           if(s[xt][i]!=hash[t][i])
    17                return false;
    18      return true;
    19 }
    20 inline int find(int x,int xt,int xp)
    21 {
    22      int t=x;
    23      while(hash[t][32]!=-1)
    24      {
    25           if(!check(t,xt)) t=(t+1)%mod;
    26           else break;
    27      }
    28      if(hash[t][32]==-1)
    29      {
    30           int i;
    31           for(i=0;i<=k-1;i++)
    32                hash[t][i]=s[xt][i];
    33           hash[t][33]=xp;
    34           hash[t][32]=1;
    35           return xp;
    36      }
    37      return hash[t][33];
    38 }
    39 int main()
    40 {
    41      int n;
    42      scanf("%d%d",&n,&k);
    43      int i,j;
    44      int x;
    45      for(i=1;i<=n;i++)
    46      {
    47           scanf("%d",&x);
    48           int p=0;
    49           while(x!=0)
    50           {
    51                  a[i][p]=x%2;
    52                x=x/2;
    53                p++;
    54           }
    55      }
    56      for(i=1;i<=n;i++)
    57           for(j=0;j<=k-1;j++)
    58                s[i][j]=s[i-1][j]+a[i][j];
    59      for(i=1;i<=n;i++)
    60           for(j=k-1;j>=0;j--)
    61                s[i][j]-=s[i][0];
    62      memset(hash,-1,sizeof(hash));
    63      int ans=0;
    64      for(i=0;i<=n;i++)
    65      {
    66            int p=0;
    67           for(j=k-1;j>=0;j--)
    68           {
    69                p=(p*4+s[i][j])%mod;
    70                while(p<0)
    71                     p=-p;
    72           }
    73           int loc=find(p,i,i);
    74           ans=max(ans,i-loc);
    75      }
    76      printf("%d
    ",ans);
    77 }
  • 相关阅读:
    进化中的技术小白
    mybatis的学习5______使用注解实现CURD
    mybatis的学习4______分页的实现
    Mybatis的学习3______使用log4j打印日志信息
    mybatis的学习2_____配置文件的详解和代码的优化
    Java代码实现邮件的上传
    JavaWeb小作业 用户表单数据的获取
    Java的学习JSP____4
    Javaweb的学习session___3
    Javaweb的学习(servlet和request)___2
  • 原文地址:https://www.cnblogs.com/fengzhiyuan/p/8066268.html
Copyright © 2020-2023  润新知