微信小程序开发之小程序架构篇的图解与分析
644
2022-08-29
bzoj4582 [Usaco2016 Open]Diamond Collector
Description
Bessie the cow, always a fan of shiny objects, has taken up a hobby of mining diamonds in her spare time! She has collected N diamonds (N≤50,000) of varying sizes, and she wants to arrange some of th em in a pair of display cases in the barn.Since Bessie wants the diamonds in each of the two cases t o be relatively similar in size, she decides that she will not include two diamonds in the same case if their sizes differ by more than K (two diamonds can be displayed together in the same case if th eir sizes differ by exactly K). Given K, please help Bessie determine the maximum number of diamonds she can display in both cases together. 给定长度为N的数列a,要求选出两个互不相交的子序列(可以不连续),满足同一个子序列中任意两个元素差的绝 对值不超过K。最大化两个子序列长度的和并输出这个值。1 ≤ N ≤ 50000, 1 ≤ a_i ≤ 10 ^ 9, 0 ≤ K ≤ 10^ 9
Input
The first line of the input file contains N and K (0≤K≤1,000,000,000). The next NN lines each cont ain an integer giving the size of one of the diamonds. All sizes will be positive and will not excee d 1,000,000,000 Output
Output a single positive integer, telling the maximum number of diamonds that Bessie can showcase in total in both the cases. Sample Input
7 3 10 5 1 12 9 5 14 Sample Output
5 HINT
Source
Silver鸣谢frank_c1提供翻译
先排序
从右向左 每个点维护向右最远能延伸的距离 然后因为是两个 然后我再维护下前缀最远延伸 所以直接把两个相加 每次取最大即可
#include
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~