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 n platforms, numbered from 1 to n , placed one after another. There are m colors available in the game, numbered from 1 to m . The i -th platform is colored ci .
You start on the platform 1 and want to reach platform n . In one move, you can jump from some platform i to platforms i+1 or i+2 .
All platforms are initially deactivated (including platforms 1 and n ). For each color j , you can pay xj coins to activate all platforms of that color.
You want to activate some platforms so that you could start on an activated platform 1 , jump through some activated platforms and reach an activated platform n .
What's the smallest amount of coins you can spend to achieve that?
输入格式
The first line contains two integers n and m ( 2≤n≤3⋅105 ; 1≤m≤40 ) — the number of platforms and the number of colors, respectively.
The second line contains n integers c1,c2,…,cn ( 1≤ci≤m ) — the colors of the platforms.
The third line contains m integers x1,x2,…,xm ( 1≤xi≤107 ) — 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 1 , jump through some activated platforms and reach an activated platform n .
输入输出样例
输入#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