A14663 | Subsequence
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Alice has an integer sequence $a$ of length $n$ and all elements are different. She will choose a subsequence of $a$ of length $m$ , and defines the value of a subsequence $a_{b_1},a_{b_2},\ldots,a_{b_m}$ as $$$$\sum_{i = 1}^m (m \cdot a_{b_i}) - \sum_{i = 1}^m \sum_{j = 1}^m f(\min(b_i, b_j), \max(b_i, b_j)), $$ where $f(i, j)$ denotes $\\min(a\_i, a\_{i + 1}, \\ldots, a\_j)$ .</p><p>Alice wants you to help her to maximize the value of the subsequence she choose.</p><p>A sequence $s$ is a subsequence of a sequence $t$ if $s$ can be obtained from $t$$$ by deletion of several (possibly, zero or all) elements.
输入格式
The first line contains two integers $n$ and $m$ ( $1 \le m \le n \le 4000$ ).
The second line contains $n$ distinct integers $a_1, a_2, \ldots, a_n$ ( $1 \le a_i < 2^{31}$ ).
The second line contains $n$ distinct integers $a_1, a_2, \ldots, a_n$ ( $1 \le a_i < 2^{31}$ ).
输出格式
Print the maximal value Alice can get.
输入输出样例
输入 #1
6 4 15 2 18 12 13 4
输出 #1
100
输入 #2
11 5 9 3 7 1 8 12 10 20 15 18 5
输出 #2
176
输入 #3
1 1 114514
输出 #3
0
输入 #4
2 1 666 888
输出 #4
0
In the first example, Alice can choose the subsequence $[15, 2, 18, 13]$ , which has the value $4 \cdot (15 + 2 + 18 + 13) - (15 + 2 + 2 + 2) - (2 + 2 + 2 + 2) - (2 + 2 + 18 + 12) - (2 + 2 + 12 + 13) = 100$ . In the second example, there are a variety of subsequences with value $176$ , and one of them is $[9, 7, 12, 20, 18]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted