CodeForces 703B Mishka and trip

Posted Fighting Heart

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 703B Mishka and trip相关的知识,希望对你有一定的参考价值。

简单题。

先把环上的贡献都计算好。然后再计算每一个$capital$ $city$额外做出的贡献值。

假设$A$城市为$capital$ $city$,那么$A$城市做出的额外贡献:$A$城市左边城市$L$和右边城市$R$都不能和$A$做出贡献,之前存在的$capital$ $city$和$A$城市不能做出贡献,要注意的是$L$和$R$中存在$capital$ $city$的情况。剩下的城市都可以和$A$做出贡献。

#pragma comment(linker, "/STACK:1024000000,1024000000")
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<vector>
#include<map>
#include<set>
#include<queue>
#include<stack>
#include<iostream>
using namespace std;
typedef long long LL;
const double pi=acos(-1.0),eps=1e-8;
void File()
{
    freopen("D:\\in.txt","r",stdin);
    freopen("D:\\out.txt","w",stdout);
}

const int maxn=100010;
int n,k;
LL c[maxn],sum,y,p;
bool f[maxn];

int main()
{
    scanf("%d%d",&n,&k);
    for(int i=1;i<=n;i++) scanf("%lld",&c[i]);
    LL ans=0; c[n+1]=c[1];

    for(int i=1;i<=n;i++)  ans=ans+c[i]*c[i+1],y=y+c[i];
    for(int i=1;i<=k;i++)
    {
        int x; scanf("%d",&x); sum=y;
        int L=x-1,R=x+1; if(L==0) L=n; if(R==n+1) R=1;
        sum=sum-c[L]-c[R]-c[x]; sum=sum-p;
        if(f[L]) sum=sum+c[L]; if(f[R]) sum=sum+c[R];
        ans=ans+c[x]*sum; f[x]=1; p=p+c[x];
    }
    printf("%lld\n",ans);
    return 0;
}

 

以上是关于CodeForces 703B Mishka and trip的主要内容,如果未能解决你的问题,请参考以下文章

[树状数组]Mishka and Interesting sum(codeforces703D)

codeforces 703E Mishka and Divisors

Codeforces Round #365 (Div. 2) D. Mishka and Interesting sum 树状数组

Educational Codeforces Round 56 Editorial

Codeforces Round #365 (Div. 2) D - Mishka and Interesting sum(离线树状数组)

codeforces 703D Mishka and Interesting sum 偶数亦或 离线+前缀树状数组