CF1380D.Berserk And Fireball

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn warriors in a row. The power of the ii -th warrior is aia_i . All powers are pairwise distinct.

You have two types of spells which you may cast:

  1. Fireball: you spend xx mana and destroy exactly kk consecutive warriors;
  2. Berserk: you spend yy mana, choose two consecutive warriors and the warrior with greater power destroys another chosen warrior.

For example, let the powers of warriors be [2,3,7,8,11,5,4][2, 3, 7, 8, 11, 5, 4] , and k=3k = 3 . If you cast Berserk on warriors with powers 88 and 1111 , the resulting sequence of powers becomes [2,3,7,11,5,4][2, 3, 7, 11, 5, 4] . Then, for example, if you cast Fireball on consecutive warriors with powers [7,11,5][7, 11, 5] , the resulting sequence of powers becomes [2,3,4][2, 3, 4] .

You want to turn the current sequence of warriors powers a1,a2,,ana_1, a_2, \dots, a_n into b1,b2,,bmb_1, b_2, \dots, b_m . Calculate the minimum amount of mana you need to spend on it.

输入格式

The first line contains two integers nn and mm ( 1n,m21051 \le n, m \le 2 \cdot 10^5 ) — the length of sequence aa and the length of sequence bb respectively.

The second line contains three integers x,k,yx, k, y ( 1x,y,109;1kn1 \le x, y, \le 10^9; 1 \le k \le n ) — the cost of fireball, the range of fireball and the cost of berserk respectively.

The third line contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ain1 \le a_i \le n ). It is guaranteed that all integers aia_i are pairwise distinct.

The fourth line contains mm integers b1,b2,,bmb_1, b_2, \dots, b_m ( 1bin1 \le b_i \le n ). It is guaranteed that all integers bib_i are pairwise distinct.

输出格式

Print the minimum amount of mana for turning the sequnce a1,a2,,ana_1, a_2, \dots, a_n into b1,b2,,bmb_1, b_2, \dots, b_m , or 1-1 if it is impossible.

输入输出样例

  • 输入#1

    5 2
    5 2 3
    3 1 4 5 2
    3 5

    输出#1

    8
  • 输入#2

    4 4
    5 1 4
    4 3 1 2
    2 4 3 1

    输出#2

    -1
  • 输入#3

    4 4
    2 1 11
    1 3 2 4
    1 3 2 4

    输出#3

    0
首页