我是靠谱客的博主 漂亮枕头,最近开发中收集的这篇文章主要介绍牛客练习赛6 B-点权和,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include <stdio.h>
#include <algorithm>
#include <math.h>
#include <string.h>
using namespace std;
#define maxn 100010
#define LL long long
#define mod 19260817
int f[maxn] ;
int sz[maxn];
LL sum[maxn],tag[maxn],sontag[maxn];
int main()
{
#ifdef shuaishuai
freopen("in.txt","r",stdin );
//freopen("out.txt","w",stdout);
#endif // shuaishuai
int n,m;
scanf("%d%d",&n,&m);
for(int i=2,x;i<=n;i++)
{
scanf("%d",&x);
f[i]=x;sz[x]++;sz[i]++;
}
LL ans=0;
for(LL i=1;i<=m;i++)
{
int x;
scanf("%d",&x);
sum[x]+=sz[x]+1;
sum[f[x]]+=2;
sum[f[f[x]]]++;
tag[x]++;
sontag[f[x]]++;
LL t=0;//巧妙的容斥- -
t=(t+sum[x])%mod;//对x操作,x的子节点操作,x的子节点的子节点操作的贡献和
t=(t+tag[f[x]]*2)%mod;//对fx操作给fx和x带来的累计贡献
t=(t+tag[f[f[x]]])%mod;//对ffx操作给fx带来的贡献
t=(t+sontag[f[x]]-tag[x])%mod;//fx子节点中除去x的贡献
ans=(ans+i*t)%mod;
}
printf("%lldn",ans );
return 0;
}

 

转载于:https://www.cnblogs.com/MeowMeowMeow/p/7854312.html

最后

以上就是漂亮枕头为你收集整理的牛客练习赛6 B-点权和的全部内容,希望文章能够帮你解决牛客练习赛6 B-点权和所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(77)

评论列表共有 0 条评论

立即
投稿
返回
顶部