题目大意:给定一棵n个点的树,每个点上有一个汉子或妹子,每人有一个权值,每次询问一条链上选出一对权值相等的男女有多少种选法。(n,q<=10^5)

做法:比较显然的树上莫队,熟悉序列莫队那套理论再推广到树上即可,我的树上莫队好像有点假,我是先树分块,对每块的根跑一遍dfs处理到各个点的链的信息并顺便处理一个端点在这个块内的询问,常数好像有点大,卡了半天常才过……学习了一下dalao的树上莫队,求一个进和出都算一遍的dfs序,链询问转化为区间询问,在区间内但不在链上的会被计算到两次所以被抵消了,感觉很奇妙。

丑陋代码:

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<map>
using namespace std;
char BB[<<],*S=BB;
inline int read()
{
int x;char c;
while((c=*S++)<''||c>'');
for(x=c-'';(c=*S++)>=''&&c<='';)x=x*+c-'';
return x;
}
#define MN 100000
#define K 700
struct edge{int nx,t;}e[MN*+];
struct query{int x,y,id;}Q[MN+];
int a[MN+],b[MN+],cnt,h[MN+],en,fa[MN+],d[MN+],f[MN+],dep[MN+];
int rt,nw,u[MN+],A[MN+],B[MN+];
long long ans,C[MN+];
bool cmp(const query&a,const query&b){return f[a.x]<f[b.x];}
map<int,int> mp;
inline void ins(int x,int y)
{
e[++en]=(edge){h[x],y};h[x]=en;
e[++en]=(edge){h[y],x};h[y]=en;
}
void dfs(int x)
{
for(int i=h[x];i;i=e[i].nx)if(e[i].t!=fa[x])
{
fa[e[i].t]=x;dep[e[i].t]=dep[x]+;dfs(e[i].t);
d[x]=max(d[x],d[e[i].t]+);
}
if(d[x]==K||x==rt)f[x]=x,d[x]=-;
}
void build(int x)
{
for(int i=h[x];i;i=e[i].nx)if(e[i].t!=fa[x])
{
if(!f[e[i].t])f[e[i].t]=f[x];
build(e[i].t);
}
}
void DFS(int x,int fa)
{
d[x]=++cnt;
for(int i=h[x];i;i=e[i].nx)
if(e[i].t!=fa)DFS(e[i].t,x);
}
bool CMP(const query&a,const query&b){return d[a.y]<d[b.y];}
void cal(int x)
{
if(u[x]^=)ans+=a[x]?A[b[x]]:B[b[x]],a[x]?++B[b[x]]:++A[b[x]];
else ans-=a[x]?A[b[x]]:B[b[x]],a[x]?--B[b[x]]:--A[b[x]];
}
void solve(int x,int fr)
{
d[x]=MN+;cal(x);
for(;rt==f[Q[nw].x]&&Q[nw].y==x;++nw)
{
for(int i=Q[nw].x,u=;i!=rt;i=fa[i])
if(d[i]==MN+&&u)cal(rt),u=;else cal(i);
C[Q[nw].id]=ans;
for(int i=Q[nw].x,u=;i!=rt;i=fa[i])
if(d[i]==MN+&&u)cal(rt),u=;else cal(i);
}
for(int i=h[x];i;i=e[i].nx)
if(e[i].t!=fr)solve(e[i].t,x);
d[x]=;cal(x);
}
int main()
{
BB[fread(BB,,<<,stdin)]=;
int n=read(),i,j,q;
for(i=;i<=n;++i)a[i]=read();
for(i=;i<=n;++i)b[i]=mp[b[i]=read()]?mp[b[i]]:mp[b[i]]=++cnt;
for(i=;i<n;++i)ins(read(),read());
rt=%n+;dfs(rt);build(rt);
for(q=read(),i=;i<=q;++i)
{
Q[i].x=read();Q[i].y=read();Q[i].id=i;
if(dep[Q[i].x]-dep[f[Q[i].x]]>dep[Q[i].y]-dep[f[Q[i].y]])swap(Q[i].x,Q[i].y);
}
sort(Q+,Q+q+,cmp);
for(nw=;nw<=q;)
{
DFS(f[Q[nw].x],cnt=);
for(i=nw;f[Q[i].x]==f[Q[nw].x];++i);
sort(Q+nw,Q+i,CMP);
solve(rt=f[Q[nw].x],ans=);
}
for(i=;i<=q;++i)printf("%I64d\n",C[i]);
}

[Codeforces]852I - Dating的更多相关文章

  1. Codeforces 852I Dating 树上莫队

    Dating 随便树上莫队搞一搞就好啦. #include<bits/stdc++.h> #define LL long long #define LD long double #defi ...

  2. python爬虫学习(5) —— 扒一下codeforces题面

    上一次我们拿学校的URP做了个小小的demo.... 其实我们还可以把每个学生的证件照爬下来做成一个证件照校花校草评比 另外也可以写一个物理实验自动选课... 但是出于多种原因,,还是绕开这些敏感话题 ...

  3. 【Codeforces 738D】Sea Battle(贪心)

    http://codeforces.com/contest/738/problem/D Galya is playing one-dimensional Sea Battle on a 1 × n g ...

  4. 【Codeforces 738C】Road to Cinema

    http://codeforces.com/contest/738/problem/C Vasya is currently at a car rental service, and he wants ...

  5. 【Codeforces 738A】Interview with Oleg

    http://codeforces.com/contest/738/problem/A Polycarp has interviewed Oleg and has written the interv ...

  6. CodeForces - 662A Gambling Nim

    http://codeforces.com/problemset/problem/662/A 题目大意: 给定n(n <= 500000)张卡片,每张卡片的两个面都写有数字,每个面都有0.5的概 ...

  7. CodeForces - 274B Zero Tree

    http://codeforces.com/problemset/problem/274/B 题目大意: 给定你一颗树,每个点上有权值. 现在你每次取出这颗树的一颗子树(即点集和边集均是原图的子集的连 ...

  8. CodeForces - 261B Maxim and Restaurant

    http://codeforces.com/problemset/problem/261/B 题目大意:给定n个数a1-an(n<=50,ai<=50),随机打乱后,记Si=a1+a2+a ...

  9. CodeForces - 696B Puzzles

    http://codeforces.com/problemset/problem/696/B 题目大意: 这是一颗有n个点的树,你从根开始游走,每当你第一次到达一个点时,把这个点的权记为(你已经到过不 ...

随机推荐

  1. 关于安装win7系统时出现0x0000007b电脑蓝屏代码的问题

    问题解析: 0X0000007B 这个错误网上都说是sata硬盘的什么引导模式的原因引起. 在网上查找了很久,大概引起错误的原因就是:sata和ide两种模式不同,前者可以装win7系统,后者是xp系 ...

  2. HAOI 2012 高速公路

    https://www.luogu.org/problem/show?pid=2221 题目描述 Y901高速公路是一条重要的交通纽带,政府部门建设初期的投入以及使用期间的养护费用都不低,因此政府在这 ...

  3. 第五章 JavaScript对象及初识面向对象

    第五章   JavaScript对象及初识面向对象 一.对象 在JavaScript中,所有事物都是对象,如字符串.数值.数组.函数等. 在JavaScript对象分为内置对象和自定义对象,要处理一些 ...

  4. 如何用UPA优化性能?先读懂这份报告!

    一.概述 打开一份UPA报告时,最先看到的就是概述页面,这也是我们推荐用户第一时间关注的页面.概述页面一开始会列出测试的基本信息,并根据腾讯游戏的性能标准,给出本次测试的结果(通过,不通过和警告): ...

  5. 新概念英语(1-133)Sensational news!

    Lesson 133 Sensational news! 爆炸性新闻! Listen to the tape then answer this question. What reason did Ka ...

  6. 新概念英语(1-97)A Small Blue Case

    Lesson 97 A small blue case 一只蓝色的小箱子 Listen to the tape then answer this question. Does Mr. Hall get ...

  7. hdu-2141 Can you find it?---暴力+二分

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=2141 题目大意: 给ABC三个数组,给一个X,求是否存在Ai+Bj+Ck = X 思路: 等式转化成 ...

  8. sort()与sorted()区分开

    列表的排序方法是sort 可用list.sort() sorted()是BIF不能用list.sorted() 引发的异常AttributeError: 'list' object has no at ...

  9. Text-插入图片

    #text插入图片 from tkinter import * master=Tk() text=Text(master,width=50,height=50) text.pack() photo=P ...

  10. z-index的权重是叠加的

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8&quo ...