CF387E.George and Cards
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
George is a cat, so he loves playing very much.
Vitaly put n cards in a row in front of George. Each card has one integer written on it. All cards had distinct numbers written on them. Let's number the cards from the left to the right with integers from 1 to n . Then the i -th card from the left contains number pi ( 1<=pi<=n ).
Vitaly wants the row to have exactly k cards left. He also wants the i -th card from left to have number bi written on it. Vitaly gave a task to George, to get the required sequence of cards using the remove operation n−k times.
In one remove operation George can choose w ( 1<=w ; w is not greater than the current number of cards in the row) contiguous cards (contiguous subsegment of cards). Let's denote the numbers written on these card as x1,x2,...,xw (from the left to the right). After that, George can remove the card xi , such that xi<=xj for each j (1<=j<=w) . After the described operation George gets w pieces of sausage.
George wondered: what maximum number of pieces of sausage will he get in total if he reaches his goal and acts optimally well? Help George, find an answer to his question!
输入格式
The first line contains integers n and k ( 1<=k<=n<=106 ) — the initial and the final number of cards.
The second line contains n distinct space-separated integers p1,p2,...,pn ( 1<=pi<=n ) — the initial row of cards.
The third line contains k space-separated integers b1,b2,...,bk — the row of cards that you need to get. It is guaranteed that it's possible to obtain the given row by using the remove operation for n−k times.
输出格式
Print a single integer — the maximum number of pieces of sausage that George can get if he acts optimally well.
输入输出样例
输入#1
3 2 2 1 3 1 3
输出#1
1
输入#2
10 5 1 2 3 4 5 6 7 8 9 10 2 4 6 8 10
输出#2
30