CF1767E.Algebra Flash

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Algebra Flash 2.2 has just been released!Changelog:

  • New gamemode!

Thank you for the continued support of the game!

Huh, is that it? Slightly disappointed, you boot up the game and click on the new gamemode. It says "Colored platforms".

There are nn platforms, numbered from 11 to nn , placed one after another. There are mm colors available in the game, numbered from 11 to mm . The ii -th platform is colored cic_i .

You start on the platform 11 and want to reach platform nn . In one move, you can jump from some platform ii to platforms i+1i + 1 or i+2i + 2 .

All platforms are initially deactivated (including platforms 11 and nn ). For each color jj , you can pay xjx_j coins to activate all platforms of that color.

You want to activate some platforms so that you could start on an activated platform 11 , jump through some activated platforms and reach an activated platform nn .

What's the smallest amount of coins you can spend to achieve that?

输入格式

The first line contains two integers nn and mm ( 2n31052 \le n \le 3 \cdot 10^5 ; 1m401 \le m \le 40 ) — the number of platforms and the number of colors, respectively.

The second line contains nn integers c1,c2,,cnc_1, c_2, \dots, c_n ( 1cim1 \le c_i \le m ) — the colors of the platforms.

The third line contains mm integers x1,x2,,xmx_1, x_2, \dots, x_m ( 1xi1071 \le x_i \le 10^7 ) — the cost of activating all platforms of each color.

输出格式

Print the smallest amount of coins you can spend to activate some platforms so that you could start on an activated platform 11 , jump through some activated platforms and reach an activated platform nn .

输入输出样例

  • 输入#1

    5 3
    1 3 2 3 1
    1 10 100

    输出#1

    11
  • 输入#2

    5 3
    1 3 2 3 1
    1 200 20

    输出#2

    21
  • 输入#3

    4 2
    2 2 1 1
    5 5

    输出#3

    10
  • 输入#4

    10 10
    3 8 6 2 10 5 2 3 7 3
    9 7 4 2 1 8 2 6 2 2

    输出#4

    15
首页