CF703B.Mishka and trip

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Little Mishka is a great traveller and she visited many countries. After thinking about where to travel this time, she chose XXX — beautiful, but little-known northern country.

Here are some interesting facts about XXX:

  1. XXX consists of nn cities, kk of whose (just imagine!) are capital cities.
  2. All of cities in the country are beautiful, but each is beautiful in its own way. Beauty value of ii -th city equals to cic_{i} .
  3. All the cities are consecutively connected by the roads, including 11 -st and nn -th city, forming a cyclic route 12...n11—2—...—n—1 . Formally, for every 1<=i<n there is a road between ii -th and i+1i+1 -th city, and another one between 11 -st and nn -th city.
  4. Each capital city is connected with each other city directly by the roads. Formally, if city xx is a capital city, then for every 1<=i<=n,ix1<=i<=n,i≠x , there is a road between cities xx and ii .
  5. There is at most one road between any two cities.
  6. Price of passing a road directly depends on beauty values of cities it connects. Thus if there is a road between cities ii and jj , price of passing it equals cicjc_{i}·c_{j} .

Mishka started to gather her things for a trip, but didn't still decide which route to follow and thus she asked you to help her determine summary price of passing each of the roads in XXX. Formally, for every pair of cities aa and bb ( a<b ), such that there is a road between aa and bb you are to find sum of products cacbc_{a}·c_{b} . Will you help her?

输入格式

The first line of the input contains two integers nn and kk ( 3<=n<=100000,1<=k<=n3<=n<=100000,1<=k<=n ) — the number of cities in XXX and the number of capital cities among them.

The second line of the input contains nn integers c1,c2,...,cnc_{1},c_{2},...,c_{n} ( 1<=ci<=100001<=c_{i}<=10000 ) — beauty values of the cities.

The third line of the input contains kk distinct integers id1,id2,...,idkid_{1},id_{2},...,id_{k} ( 1<=idi<=n1<=id_{i}<=n ) — indices of capital cities. Indices are given in ascending order.

输出格式

Print the only integer — summary price of passing each of the roads in XXX.

输入输出样例

  • 输入#1

    4 1
    2 3 1 2
    3
    

    输出#1

    17
  • 输入#2

    5 2
    3 5 2 2 4
    1 4
    

    输出#2

    71

说明/提示

This image describes first sample case:

It is easy to see that summary price is equal to 1717 .

This image describes second sample case:

It is easy to see that summary price is equal to 7171 .

首页