当前位置:网站首页>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的时候,由左右子树当前值和组合的值的最大值转移
代码:
参考
边栏推荐
猜你喜欢
随机推荐
Selenium: element judgment
matlab 风速模型 小波滤波
Xiaobai's 0 Basic Tutorial SQL: An Overview of Relational Databases 02
leetcode43 字符串相乘
曲柄滑块机构运动分析和参数优化
LeetCode 0149. Maximum number of points on a line
Datagrip error "The specified database userpassword combination is rejected..."Solutions
Vsce package after the Command failed: NPM list - production - parseable - the depth = 99999 - loglevel = error exception
使用string 容器翻转 字母
Jupyter shortcuts
Dbeaver connect the MySQL database and error Connection refusedconnect processing
mysql中添加字段的相关问题
ORACLE 实现另外一个用户修改包(package)
Sound Signal Processing Fundamental Frequency Detection and Time-Frequency Analysis
Selenium: browser operation
CSP-S2019兴奋不已
return;代表含义
用位运算为你的程序加速
2022.7.27 Selected lectures on good topics
小白的0基础教程SQL: 安装MYSQL 03