CF392E.Deleting Substrings
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
SmallR likes a game called "Deleting Substrings". In the game you are given a sequence of integers w , you can modify the sequence and get points. The only type of modification you can perform is (unexpected, right?) deleting substrings. More formally, you can choose several contiguous elements of w and delete them from the sequence. Let's denote the sequence of chosen elements as wl,wl+1,...,wr . They must meet the conditions:
- the equality ∣wi−wi+1∣=1 must hold for all i (l<=i<r) ;
- the inequality 2⋅wi−wi+1−wi−1>=0 must hold for all i (l<i<r) .
After deleting the chosen substring of w , you gain vr−l+1 points. You can perform the described operation again and again while proper substrings exist. Also you can end the game at any time. Your task is to calculate the maximum total score you can get in the game.
输入格式
The first line contains a single integer n (1<=n<=400) — the initial length of w . The second line contains n integers v1,v2,...,vn (0<=∣vi∣<=2000) — the costs of operations. The next line contains n integers w1,w2,...,wn (1<=wi<=109) — the initial w .
输出格式
Print a single integer — the maximum total score you can get.
输入输出样例
输入#1
3 0 0 3 1 2 1
输出#1
3
输入#2
6 1 4 5 6 7 1000 2 1 1 2 2 3
输出#2
12