当前位置:网站首页>2022杭电多校第二场1011 DOS Card(线段树)
2022杭电多校第二场1011 DOS Card(线段树)
2022-08-01 06:40:00 【51CTO】
题目描述
DOS is a new single-player game that Kayzin came up with. At the beginning of the game you will be given n cards in a row, each with the number of value ai.
In each “matching” operation you can choose any two cards (we assume that the subscripts of these two cards are i,j(i<j). Notice that i is less than j), and you will get a score of (ai+aj)×(ai−aj).
Kayzin will ask you m times. In the k-th query, you need to select four cards from the cards with subscripts Lk to Rk, and “match” these four cards into two pairs (i.e., two matching operations, but the subscripts of the cards selected in the two matching operations must be different from each other. That is, a card can only be matched at most once. e.g., if you select four tickets with subscripts a, b, c, and d, matching a with b and c with d, or matching a with c and b with d are legal, but matching a with b and b with c is not legal), please calculate the maximum value of the sum of the two matching scores.
Note that the queries are independent of each other.
输入描述
The first line contains an integer T(T≤100) . Then T test cases follow. For one case,
The first line contains two integer n (4≤n≤2×105) and m (1≤m≤105) , n denotes the total number of cards , m denotes the number of times Kayzin queries.
The second line contains n integers a1,a2,…,an (1≤ai≤108), denotes the value of each card.
The next m lines contain Kayzin’s queries. The kth line has two numbers, Lk and Rk (1≤Lk≤Rk≤n), the input guarantees that Rk−Lk≥3
It is guaranteed that the sum of n over all test cases doesn’t exceed 2×105 and the sum of m over all test cases doesn’t exceed 2×05.
输出描述
Print m integer for each case, indicating the maximum scores that can be obtained by selecting four cards (two matching pairs)
题意:
给出长度为n的序列,m次询问,每次询问给出l,r表示区间范围,在[l,r]里选择四个数,两两配对,计算两对的最大值
思路:
输入数组的时候就将变为
方便后续处理
相当于选出四个数来,每个数对答案的贡献可以为正值也可以为负值
但是因为条件限制还有,所以只有
和
两种组合符合题意
区间的最值可以用线段树维护可以划分为
可以划分为
然后三个的为
其中可以划分为
其他的依次类推
pushup的时候,由左右子树当前值和组合的值的最大值转移
代码:
参考
边栏推荐
猜你喜欢
随机推荐
matlab simulink 粒子群优化模糊pid控制的电机泵
LeetCode每日一题(309. Best Time to Buy and Sell Stock with Cooldown)
我三本学历,五面阿里,被面试官“供”着出来了,拿了33*15的Offer
crypto-js uses
爆肝3万字,最硬核丨Mysql 知识体系、命令全集 【建议收藏 】
2022.7.26 模拟赛
Robot_Framework: keyword
Selenium: upload and download files
问下 mysql向pg同步多个表的话 有什么好的方案吗?
NUMPY
Compare two objects are the same depth
Matlab simulink particle swarm optimization fuzzy pid control motor pump
mysql中添加字段的相关问题
MVVM project development (commodity management system 1)
Qt Widget 项目对qml的加载实例
The Bean's life cycle
Speed up your programs with bitwise operations
Selenium: JS operation
使用string 容器翻转 字母
从购买服务器到网站搭建成功保姆级教程~超详细