当前位置:网站首页>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的时候,由左右子树当前值和组合的值的最大值转移
代码:
参考
边栏推荐
猜你喜欢
随机推荐
2022.7.26 Mock Competition
旋度(7)连接失败localhost8080;连接拒绝了
字符中的第一个唯一字符
数据湖:数据同步工具NiFi
实战演练 Navicat 中英文模式切换
解决浏览器滚动条导致的页面闪烁问题
Why is the lightweight VsCode used more and more?Why eat my C drive 10G?How to Painlessly Clean VsCode Cache?Teach you how to lose weight for C drive
AspNet.WebApi.Owin custom Token request parameters
爬虫基本原理介绍、实现以及问题解决
深度比较两个对象是否相同
After the image is updated, Glide loading is still the original image problem
leetcode43 字符串相乘
Robot_Framework: keyword
七、MFC序列化机制和序列化类对象
The BP neural network based on MATLAB voice characteristic signal classification
Data organization -- singly linked list of the linear table
第5章——以程序方式处理MySQL数据表的数据
微信小程序接口调用凭证(获取token)auth.getAccessToken接口开发
测试工具(四)Jenkins环境搭建与使用
滚动条样式修改









