A10893. Heidi and Library (hard)
编程题
普及/提高-
知识点
题目描述
The good times at Heidi's library are over. Marmots finally got their internet connections and stopped coming to the library altogether. Not only that, but the bookstore has begun charging extortionate prices for some books. Namely, whereas in the previous versions each book could be bought for 1 CHF, now the price of book $i$ is $c_{i}$ CHF.
输入格式
The first line of input will contain two integers $n$ and $k$ (). The second line will contain $n$ integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=n$ ) – the sequence of book requests. The third line contains $n$ integers $c_{1},c_{2},...,c_{n}$ ( $0<=c_{i}<=10^{6}$ ) – the costs of the books.
输出格式
On a single line print the minimum cost of buying books at the store so as to satisfy all requests.
输入输出样例
输入 #1
4 80 1 2 2 1 1 1 1 1
输出 #1
2
输入 #2
4 1 1 2 2 1 1 1 1 1
输出 #2
3
输入 #3
4 2 1 2 3 1 1 1 1 1
输出 #3
3
输入 #4
7 2 1 2 3 1 1 1 2 1 10 1 0 0 0 0
输出 #4
13
说明/提示
The first three sample cases are repeated, but the fourth one is new.
In the fourth test case, when buying book $3$ , Heidi should discard either book $1$ or $2$ . Even though book $2$ will be requested later than book $1$ , she should keep it, because it is so expensive to buy again.
In the fourth test case, when buying book $3$ , Heidi should discard either book $1$ or $2$ . Even though book $2$ will be requested later than book $1$ , she should keep it, because it is so expensive to buy again.