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

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

Time Limit: 5 Sec  Memory Limit: 64 MB
Submit: 510  Solved: 196
[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

Gold

 

题解:一开始狠狠的逗比了一下——一开始我看到了这题,想当然认为问题可以转化为求最长的和为\( {2}^{M} - 1 \)的倍数的子段,结果狠狠的WA了TT。。。这种想法有个最典型的反例,那就是连续\( {2}^{M} - 1 \)个1,但是很明显不符合题意

于是发现如果某段内各个位相等的话,那么对于各个位的前缀和之差必然完全相等,其实我们也不必直接去求前缀和之差,直接可以用平衡树进行形态存储——形态存储指的是将各个位上的累加数字关于第一个元素进行个相对化——比如(2,4,6)可以转化为(0,2,4),而(4,6,8)也可以转为(0,2,4)这样如果两个前缀和数组可以构成形态相等的话,那就意味着中间这一段符合题目中所述的各个位累加和相等,于是用一颗平衡树存储即可,时间复杂度\( O\left(N M \log N \right) \)

  1 /**************************************************************
  2     Problem: 1702
  3     User: HansBug
  4     Language: Pascal
  5     Result: Accepted
  6     Time:1016 ms
  7     Memory:13116 kb
  8 ****************************************************************/
  9  
 10 type
 11     list=array[1..30] of longint;
 12 var
 13    i,j,k,l,m,n,head:longint;
 14    a:array[0..100005] of list;
 15    fix,lef,rig:array[0..100005] of longint;
 16 function putin(x:longint;var a:list):longint;
 17          var i:longint;
 18          begin
 19               fillchar(a,sizeof(a),0);
 20               i:=0;
 21               while x>0 do
 22                     begin
 23                          inc(i);
 24                          a[i]:=x mod 2;
 25                          x:=x div 2;
 26                     end;
 27          end;
 28 function min(x,y:longint):longint;
 29          begin
 30               if x<y then min:=x else min:=y;
 31          end;
 32 function max(x,y:longint):longint;
 33          begin
 34               if x>y then max:=x else max:=y;
 35          end;
 36 function fc(a,b:list):longint;
 37          var i,j,k:longint;
 38          begin
 39               fc:=0;
 40               for i:=1 to m do
 41                   begin
 42                        j:=(a[i]-a[1])-(b[i]-b[1]);
 43                        if j>0 then exit(1);
 44                        if j<0 then exit(-1);
 45                   end;
 46          end;
 47 procedure lt(var x:longint);
 48           var f,r:longint;
 49           begin
 50                if (x=0) or (rig[x]=0) then exit;
 51                f:=x;r:=rig[x];
 52                rig[f]:=lef[r];
 53                lef[r]:=f;
 54                x:=r;
 55           end;
 56 procedure rt(var x:longint);
 57           var f,l:longint;
 58           begin
 59                if (x=0) or (lef[x]=0) then exit;
 60                f:=x;l:=lef[x];
 61                lef[f]:=rig[l];
 62                rig[l]:=f;
 63                x:=l;
 64           end;
 65 function ins(var x:longint;y:longint):longint;
 66          begin
 67               if x=0 then
 68                  begin
 69                       x:=y;
 70                       exit(y);
 71                  end;
 72               j:=fc(a[x],a[y]);
 73               case j of
 74                    0:exit(x);
 75                    1:begin
 76                           if lef[x]=0 then
 77                              begin
 78                                   lef[x]:=y;
 79                                   ins:=y;
 80                              end
 81                           else ins:=ins(lef[x],y);
 82                           if fix[lef[x]]<fix[x] then rt(x);
 83                    end;
 84                    -1:begin
 85                            if rig[x]=0 then
 86                               begin
 87                                    rig[x]:=y;
 88                                    ins:=y;
 89                               end
 90                            else ins:=ins(rig[x],y);
 91                            if fix[rig[x]]<fix[x] then lt(x);
 92                    end;
 93               end;
 94          end;
 95 begin
 96      readln(n,m);randomize;
 97      fillchar(lef,sizeof(lef),0);
 98      fillchar(rig,sizeof(rig),0);
 99      for i:=1 to n+1 do
100          begin
101               if i=1 then putin(0,a[i]) else
102                  begin
103                       readln(j);
104                       putin(j,a[i]);
105                  end;
106               for j:=1 to m do a[i][j]:=a[i-1][j]+a[i][j];
107               fix[i]:=random(maxlongint);
108          end;
109      head:=0;l:=0;
110      for i:=1 to n+1 do
111          begin
112               j:=ins(head,i);
113               l:=max(l,i-j);
114          end;
115      writeln(l);
116      readln;
117 end.    

 

转载于:https://www.cnblogs.com/HansBug/p/4427891.html

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

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

相关文章

.NET点滴:SpanT

昨天小桂问了一个问题&#xff0c;把一个数组的全部元素加1&#xff0c;有什么好办法&#xff0c;于是有了下面的分析&#xff1a;var arr new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; //方法一 foreach (var i in arr) {i; } //方法二 for (var i 0; i < arr.Length; i) {…

React Native之通过DeviceEventEmitter发送和接收事件

1 怎么实现发送和接收事件 理论上封装了Android原生广播的代码,需要注册和反注册,这里用DeviceEventEmitter实现 //增加监听 DeviceEventEmitter.addListener //取消监听 //this.emitter.remove(); 这里可也可以通过安卓原生向页面js发送消息,可以参考我的这篇博客 React Nat…

navicat循环执行上下两行相减sql语句_SQL太难?你离完全理解SQL就差这10步!

- 点击上方“中国统计网”设置⭐星标不迷路&#xff01;-很多程序员视 SQL 为洪水猛兽。SQL 是一种为数不多的声明性语言&#xff0c;它的运行方式完全不同于我们所熟知的命令行语言、面向对象的程序语言、甚至是函数语言(尽管有些人认为 SQL 语言也是一种函数式语言)。我们每天…

mysql游标书写_mysql中光标如何书写

mysql中光标书写的方法&#xff1a;首先声明光标&#xff1b;然后开启光标&#xff0c;代码为【OPEN cursor_name】&#xff1b;接着捕获光标&#xff1b;最后关闭光标&#xff0c;代码为【CLOSE cursor_name】。本教程操作环境&#xff1a;windows7系统、mysql5.8版&#xff0…

9个不懂,说得好!

1.不懂珍惜&#xff0c;守着金山也不会快乐。2.不懂宽容&#xff0c;再多的朋友也会离去。3.不懂感恩&#xff0c;再优秀也难以成功。4.不懂行动&#xff0c;再聪明也难以圆梦。5.不懂合作&#xff0c;再拼搏也难以大成。6.不懂积累&#xff0c;再挣钱也难以大富。7.不懂满足&a…

useradd命令详解

功能说明&#xff1a;建立用户帐号。语  法&#xff1a;useradd [-mMnr][-c <备注>][-d <登入目录>][-e <有效期限>][-f <缓冲天数>][-g <群组>][-G <群组>][-s <shell>][-u <uid>][用户帐号] 或 useradd -D [-b][-e <有…

上海女白领吃火锅碰瓷,支付宝口碑居然真的要赔?

昨天中午&#xff0c;新闻晨报在微博上发出一条新闻&#xff1a;上海一位汪小姐吃火锅的时候&#xff0c;因用支付宝口碑扫码中了一个999元大红包&#xff0c;结果因为太激动手机不小心掉进油汤里&#xff0c;捞出来以后开不了机了。关键是这位小姐觉得这是口碑和商家活动导致的…

thinkphp的select和find的区别(转)

做普通PHP项目转thinkphp时&#xff0c;字段自动完整匹配&#xff0c;ajax时前台数据一直取不到&#xff0c;后发现是select和find返回数据集有差异&#xff0c;参考下面方法修改。 $this->ajaxReturn($msg[0]); select返回的是二维数组&#xff0c;find返回一维数组。 thin…

ASP.NETCore统一处理404错误都有哪些方式?

当未找到网页并且应用程序返回 404 错误时&#xff0c;ASP.NET Core MVC 仅呈现通用浏览器错误页面&#xff0c;如下图所示这不是很优雅&#xff0c;是吗&#xff1f;我们平时看到的404页面一般是这样的还有这样的试了下京东&#xff0c;地址不存在的时候是会重定向到首页下面就…

React Native之组件(Component)生命周期学习笔记

1、Component介绍 一般Component需要被其它类进行继承&#xff0c;Component和Android一样&#xff0c;也有生命周期 英文图片如下 2 具体说明 1)、挂载阶段 constructor() //构造函数,声明之前先调用super(props) componentWillMount()//因为它发生在render()方法前&…

基于junit4的关于个人所得税计算的等价类与边界值_《边界值分析》-有这篇就够了...

目录&#xff1a;定义&#xff08;What&#xff09;为什么使用该方法&#xff1f;&#xff08;Why&#xff09;如何选定边界值&#xff1f;&#xff08;How&#xff09;设计测试用例根据测试用例的完整性划分边界的分类使用场景实战演练边界值分析的优缺点特殊值测试边界值分析…

【Envi风暴】ENVI中求两幅遥感影像的相关性(相关系数)

相关性,是指两个变量的关联程度。一般地,从散点图上可以观察到两个变量有以下三种关系之一:两变量正相关、负相关、不相关。如果一个变量高的值对应于另一个变量高的值,相似地,低的值对应低的值,那么这两个变量正相关。在土壤中,孔隙率和渗透度就具有典型的正相关。反之…

win 7 旗舰版镜像 注入USB3.0 驱动

问题来源&#xff1a;原版的win7镜像没有集成USB3.0的驱动&#xff0c;然后如今的电脑主板基本是XHCI主控&#xff08;以前是EHCI的&#xff09;&#xff0c;这一变动导致在安装Win7的过程中会出现USB接口全部失灵的状况&#xff0c;所以在安装时无法识别USB3.0接口的键盘鼠标和…

(三) 一起学 Unix 环境高级编程 (APUE) 之 文件和目录

. . . . . 目录 (一) 一起学 Unix 环境高级编程 (APUE) 之 标准IO (二) 一起学 Unix 环境高级编程 (APUE) 之 文件 IO (三) 一起学 Unix 环境高级编程 (APUE) 之 文件和目录 (四) 一起学 Unix 环境高级编程 (APUE) 之 系统数据文件和信息 (五) 一起学 Unix 环境高级编程 (APUE)…

Git之pull后回退版本

1 问题 更新代码 git pull 然后我想回退上一个版本 2 解决办法 1) 查看历史记录 git reflog git reflog 8b0f68e HEAD{0}: pull: Fast-forward 1b2c852 HEAD{1}: reset: moving to HEAD{1} d6cf47e HEAD{2}: pull: Fast-forward 1b2c852 HEAD{3}: pull: Fast-forward2)…

C# StreamReader类和StreamWriter类

先看看 StreamReader&#xff0c;将前面的示例转换为读取文件以使用 StreamReader。它现在看起来容易得多。StreamReader 的构造函数接收FileStream。使用 EndOfStream 属性可以检查文件的末尾&#xff0c;使用ReadLine 方法读取文本行&#xff1a;public static void ReadFile…

DIV+CSS列表式布局(同意图片的应用)

1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">2 <html xmlns"http://www.w3.org/1999/xhtml">3 <head>4 <!--gbk,gb2312 中文-->5 &…

斯皮尔曼等级相关

一、斯皮尔曼等级相关简介 斯皮尔曼等级相关(Spearman’s correlation coefficient for ranked data)主要用于解决称名数据和顺序数据相关的问题。适用于两列变量,而且具有等级变量性质具有线性关系的资料。由英国心理学家、统计学家斯皮尔曼根据积差相关的概念推到而来,一…

怎么在mysql中打开表存信息,我应该如何存储用户的“收藏夹”在mySQL表?

I keep reading that I should store this in a separate table "with one value per line". What does this mean exactly? Like this - So that each "favoriting" gets another user entry?USER_ID SKU_Favorited001 10016001 10067024 10016001 1001…

用php写一个可以抽取随机数的工具一次只抽四个怎么实现?_面试了一个32岁的程序员,场面一度很尴尬。...

招人背景首先说一下朋友的公司招人背景&#xff0c;公司招聘PHP高级岗位&#xff0c;负责公司的B2B项目研发、并发问题的处理和解决。领导给了他两个要求&#xff1a;&#xff08;接下来的讲述我会以朋友的第一人称来进行&#xff09;&#xff08;1&#xff09;技术比较好&…