标签:
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:
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 betweena 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 ≤ 100 000, 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 ≤ 10 000) — 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.
4 1
2 3 1 2
3
17
5 2
3 5 2 2 4
1 4
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.
大体题意:
有n个城市,普通城市会和下一个城市有一条连线,省会城市 会与其他所有城市都有一条边,边的权值是两个城市权值的乘积,求所有边的权值之和!
1 #include<cstdio> 2 #include<string.h> 3 long long a[100010],flag[100010]; 4 int main() 5 { 6 int n,m; 7 while(scanf("%d %d",&n,&m)!=EOF) 8 { 9 memset(flag,0,sizeof(flag)); 10 long long sum=0,ss=0,i; 11 for(i = 1 ; i <= n ; i++) 12 { 13 scanf("%lld",&a[i]); 14 sum+=a[i]; 15 } 16 int b; 17 for(i = 0 ; i < m ; i++) 18 { 19 scanf("%d",&b); 20 flag[b]=1; //标记首都城市 21 } 22 for(i = 1 ; i <= n ; i++) 23 { 24 if(flag[i] == 1) 25 { 26 sum-=a[i]; //减去首都城市的魅力系数 27 ss+=a[i]*sum; 28 } 29 } 30 for(i = 1 ; i < n ; i++) 31 { 32 if(flag[i] != 1 && flag[i+1] != 1) 33 { 34 ss+=a[i]*a[i+1]; 35 } 36 } 37 if(flag[n] != 1 && flag[1] != 1) 38 ss+=a[n]*a[1]; 39 printf("%lld\n",ss); 40 } 41 }
CodeForces 703A Mishka and trip
标签:
原文地址:http://www.cnblogs.com/yexiaozi/p/5774166.html