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:
- XXX consists of n cities, k of whose (just imagine!) are capital cities.
- All of cities in the country are beautiful, but each is beautiful in its own way. Beauty value of i -th city equals to ci .
- All the cities are consecutively connected by the roads, including 1 -st and n -th city, forming a cyclic route 1—2—...—n—1 . Formally, for every 1<=i<n there is a road between i -th and i+1 -th city, and another one between 1 -st and n -th city.
- Each capital city is connected with each other city directly by the roads. Formally, if city x is a capital city, then for every 1<=i<=n,i=x , there is a road between cities x and i .
- There is at most one road between any two cities.
- Price of passing a road directly depends on beauty values of cities it connects. Thus if there is a road between cities i and j , price of passing it equals ci⋅cj .
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 a and b ( a<b ), such that there is a road between a and b you are to find sum of products ca⋅cb . Will you help her?
输入格式
The first line of the input contains two integers n and k ( 3<=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 n integers c1,c2,...,cn ( 1<=ci<=10000 ) — beauty values of the cities.
The third line of the input contains k distinct integers id1,id2,...,idk ( 1<=idi<=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 17 .
This image describes second sample case:
It is easy to see that summary price is equal to 71 .