CF413C.Jeopardy!

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

'Jeopardy!' is an intellectual game where players answer questions and earn points. Company Q conducts a simplified 'Jeopardy!' tournament among the best IT companies. By a lucky coincidence, the old rivals made it to the finals: company R1 and company R2.

The finals will have nn questions, mm of them are auction questions and nmn-m of them are regular questions. Each question has a price. The price of the ii -th question is aia_{i} points. During the game the players chose the questions. At that, if the question is an auction, then the player who chose it can change the price if the number of his current points is strictly larger than the price of the question. The new price of the question cannot be less than the original price and cannot be greater than the current number of points of the player who chose the question. The correct answer brings the player the points equal to the price of the question. The wrong answer to the question reduces the number of the player's points by the value of the question price.

The game will go as follows. First, the R2 company selects a question, then the questions are chosen by the one who answered the previous question correctly. If no one answered the question, then the person who chose last chooses again.

All R2 employees support their team. They want to calculate what maximum possible number of points the R2 team can get if luck is on their side during the whole game (they will always be the first to correctly answer questions). Perhaps you are not going to be surprised, but this problem was again entrusted for you to solve.

输入格式

The first line contains two space-separated integers nn and mm (1<=n,m<=100; m<=min(n,30))(1<=n,m<=100; m<=min(n,30)) — the total number of questions and the number of auction questions, correspondingly. The second line contains nn space-separated integers a1,a2,...,ana_{1},a_{2},...,a_{n} (1<=ai<=107)(1<=a_{i}<=10^{7}) — the prices of the questions. The third line contains mm distinct integers bib_{i} (1<=bi<=n)(1<=b_{i}<=n) — the numbers of auction questions. Assume that the questions are numbered from 11 to nn .

输出格式

In the single line, print the answer to the problem — the maximum points the R2 company can get if it plays optimally well. It is guaranteed that the answer fits into the integer 64-bit signed type.

输入输出样例

  • 输入#1

    4 1
    1 3 7 5
    3
    

    输出#1

    18
    
  • 输入#2

    3 2
    10 3 8
    2 3
    

    输出#2

    40
    
  • 输入#3

    2 2
    100 200
    1 2
    

    输出#3

    400
    
首页