Problem
There are $2\cdot n$ cards arranged in a row, with each card numbered from $1$ to $n$ having exactly 2 copies.
Each time, Red can choose a subarray of consecutive cards (at least $2$ cards) to remove from the deck. The chosen subarray must satisfy that the first and last cards have the same number. The score for this operation is: the number of cards multiplied by the number on the first card. Now Red wants to know what is the maximum value of the final score?
给你一个长度为 $2n$ 的数组,$1$ 到 $ n$ 每个数字恰好出现两次。你可以进行这样的操作:选择两个相同的数字 $x$ (必须都还存在于数组中),将这两个数以及其间的所有数字(共计 $cnt$ 个)全部拿走,并获得 $x\cdot cnt$ 得分。求最终最多能够获得多少分?
$1\le n\le 3\times 10^3$
Solution
我们发现基本有这三种情况:
- 相离。比如
1 1 3 3
,1
和3
互不影响。 - 包含。比如
1 3 3 1
,可以先拿3-3
再拿1-1
,也可以直接一次拿1-1
,此时3
没有任何贡献。 - 相交。比如
1 3 1 3
,如果拿了1-1
就不能再拿3-3
了,拿了3-3
也不能再拿1-1
。
设 $f(i)$ 为 $[l_i,r_i]$ 这段区间的最大得分。$l_i,r_i$ 分别指第一个 $i$ 和第二个 $i$ 的位置。
先假设 $[l_i,r_i]$ 中每个数字的贡献都是 $i$,而如果遇到了另一个区间 $[l_j,r_j]$ 满足 $(l_i<l_j<r_j<r_i)$,那么考虑使用 $f(j)$ 来代替这一个子区间的贡献。
这里一定有 $len_j<len_i$,所以我们按照区间长度 $len_i$ 排序来计算 $f(i)$
那么如何计算 $f(i)$ 呢?
设 $g(k)$ 表示,在计算 $f(i)$ 时,区间 $[l_i,k]$ 的最大贡献。
- 对于一般情况而言,$g(k)=g(k-1)+i$。
- 而如果当前 $k$ 是某个数字 $j$ 的第二次出现的地方,且这个数字第一次出现的地方 $l_j\in[l_i,k]$,那么需要考虑有可能先抹去 $j$ ,也就是取 $[l_j,r_j]$ 得分为 $f(j)$,会使得答案更优,。
而我们需要的 $f(i)=g(r_i)$。
为了得到整个数组的得分,这里有个trick。我们在数组前后添加两个0
,求 $f(0)$ 即可。
时间复杂度 $O(n^2)$。
Code
1 |
|