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 ww , 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 ww and delete them from the sequence. Let's denote the sequence of chosen elements as wl,wl+1,...,wrw_{l},w_{l+1},...,w_{r} . They must meet the conditions:

  • the equality wiwi+1=1|w_{i}-w_{i+1}|=1 must hold for all ii (l<=i<r) ;
  • the inequality 2wiwi+1wi1>=02·w_{i}-w_{i+1}-w_{i-1}>=0 must hold for all ii (l<i<r) .

After deleting the chosen substring of ww , you gain vrl+1v_{r-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 nn (1<=n<=400)(1<=n<=400) — the initial length of ww . The second line contains nn integers v1,v2,...,vnv_{1},v_{2},...,v_{n} (0<=vi<=2000)(0<=|v_{i}|<=2000) — the costs of operations. The next line contains nn integers w1,w2,...,wnw_{1},w_{2},...,w_{n} (1<=wi<=109)(1<=w_{i}<=10^{9}) — the initial ww .

输出格式

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
首页