AC日记——[WC2013]糖果公园 cogs 1817

[WC2013]糖果公园

思路:

  带修改树上莫队(模板);

来,上代码:

#include <cmath>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>

using namespace std;

#define maxn 100005
#define ll long long

struct QueryType {
    ll u,v,t,id;
};
struct QueryType qu[maxn];

struct ChangeType {
    ll to,x,h;
};
struct ChangeType cha[maxn];

ll n,m,q,ti[maxn],totq,totc,vi[maxn],wi[maxn];
ll siz,deep[maxn],f[maxn],top[maxn],bel[maxn],size[maxn];
ll E[maxn<<1],V[maxn<<1],head[maxn],cnt,dis[maxn],ans[maxn];

bool if_[maxn];

inline void in(ll &now)
{
    char Cget=getchar();now=0;
    while(Cget>‘9‘||Cget<‘0‘) Cget=getchar();
    while(Cget>=‘0‘&&Cget<=‘9‘)
    {
        now=now*10+Cget-‘0‘;
        Cget=getchar();
    }
}

void pre(ll now,ll fa)
{
    deep[now]=deep[fa]+1,size[now]=1;
    bel[now]=((++cnt)+1)/siz,f[now]=fa;
    for(ll i=head[now];i;i=E[i])
    {
        if(V[i]==fa) continue;
        pre(V[i],now),size[now]+=size[V[i]];
    }
}

void dfs(ll now,ll chain)
{
    ll pos=0;top[now]=chain;
    for(ll i=head[now];i;i=E[i])
    {
        if(V[i]==f[now]) continue;
        if(size[V[i]]>size[pos]) pos=V[i];
    }
    if(pos==0) return ;
    dfs(pos,chain);
    for(ll i=head[now];i;i=E[i])
    {
        if(V[i]==pos||V[i]==f[now]) continue;
        dfs(V[i],V[i]);
    }
}

ll solve_lca(ll x,ll y)
{
    while(top[x]!=top[y])
    {
        if(deep[top[x]]<deep[top[y]]) swap(x,y);
        x=f[top[x]];
    }
    if(deep[x]>deep[y]) swap(x,y);
    return x;
}

bool cmp(QueryType aa,QueryType bb)
{
    if(bel[aa.u]==bel[bb.u])
    {
        if(bel[aa.v]==bel[bb.v]) return aa.t<bb.t;
        else return bel[aa.v]<bel[bb.v];
    }
    else return bel[aa.u]<bel[bb.u];
}

inline void change(ll x)
{
    if(if_[cha[x].to])
    {
        cnt-=wi[ti[dis[cha[x].to]]]*vi[dis[cha[x].to]];
        ti[dis[cha[x].to]]--;
    }
    cha[x].h=dis[cha[x].to];
    dis[cha[x].to]=cha[x].x;
    if(if_[cha[x].to])
    {
        ti[cha[x].x]++;
        cnt+=wi[ti[cha[x].x]]*vi[cha[x].x];
    }
}

inline void unchange(ll x)
{
    if(if_[cha[x].to])
    {
        cnt-=wi[ti[cha[x].x]]*vi[cha[x].x];
        ti[cha[x].x]--;
    }
    dis[cha[x].to]=cha[x].h;
    if(if_[cha[x].to])
    {
        ti[cha[x].h]++;
        cnt+=wi[ti[cha[x].h]]*vi[cha[x].h];
    }
}

inline void updata(ll x)
{
    if(if_[x])
    {
        cnt-=wi[ti[dis[x]]]*vi[dis[x]];
        ti[dis[x]]--;
    }
    else
    {
        ti[dis[x]]++;
        cnt+=wi[ti[dis[x]]]*vi[dis[x]];
    }
    if_[x]=!if_[x];
}

inline void out(ll x)
{
    if(x>9) out(x/10);
    putchar(x%10+48);
}

int main()
{
    freopen("park.in","r",stdin);
    freopen("park.out","w",stdout);
    in(n),in(m),in(q);ll u,v;siz=sqrt(n);
    for(ll i=1;i<=m;i++) in(vi[i]);
    for(ll i=1;i<=n;i++) in(wi[i]);
    for(ll i=1;i<n;i++)
    {
        in(u),in(v);
        E[++cnt]=head[u],V[cnt]=v,head[u]=cnt;
        E[++cnt]=head[v],V[cnt]=u,head[v]=cnt;
    }
    for(ll i=1;i<=n;i++) in(dis[i]);
    cnt=0,pre(1,0),dfs(1,1);ll ty;
    for(ll i=1;i<=q;i++)
    {
        in(ty);
        if(ty)
        {
            in(qu[++totq].u),in(qu[totq].v),qu[totq].t=totc,qu[totq].id=totq;
            if(bel[qu[totq].u]>bel[qu[totq].v]) swap(qu[totq].u,qu[totq].v);
        }
        else in(cha[++totc].to),in(cha[totc].x);
    }
    sort(qu+1,qu+totq+1,cmp),u=1,v=1,cnt=0;ll t=0;
    for(ll no=1;no<=totq;no++)
    {
        while(t<qu[no].t) change(++t);
        while(t>qu[no].t) unchange(t--);
        ll lca=solve_lca(u,qu[no].u);
        while(u!=lca) updata(u),u=f[u];u=qu[no].u;
        while(u!=lca) updata(u),u=f[u];u=qu[no].u;
        lca=solve_lca(v,qu[no].v);
        while(v!=lca) updata(v),v=f[v];v=qu[no].v;
        while(v!=lca) updata(v),v=f[v];v=qu[no].v;
        lca=solve_lca(u,v);
        updata(lca),ans[qu[no].id]=cnt,updata(lca);
    }
    for(ll i=1;i<=totq;i++) out(ans[i]),putchar(‘\n‘);
    fclose(stdin),fclose(stdout);
    return 0;
}
时间: 2024-12-24 12:40:25

AC日记——[WC2013]糖果公园 cogs 1817的相关文章

WC2013 糖果公园

COGS 1817. [WC2013]糖果公园 http://www.cogs.pro/cogs/problem/problem.php?pid=1817 ★★★☆   输入文件:park.in   输出文件:park.out   简单对比时间限制:8 s   内存限制:512 MB [题目描述] Candyland 有一座糖果公园,公园里不仅有美丽的风景.好玩的游乐项目,还有许多免费糖果的发放点,这引来了许多贪吃的小朋友来糖果公园玩. 糖果公园的结构十分奇特,它由 n 个游览点构成,每个游览点

[bzoj 3052][wc2013]糖果公园

传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=3052 [wc2013]糖果公园 Time Limit: 200 Sec  Memory Limit: 512 MBSubmit: 1213  Solved: 609[Submit][Status][Discuss] Description Input Output Sample Input Sample Input Sample Output 84 131 27 84 树上莫队,把树分块,

bzoj 3052: [wc2013]糖果公园 带修改莫队

3052: [wc2013]糖果公园 Time Limit: 250 Sec  Memory Limit: 512 MBSubmit: 506  Solved: 189[Submit][Status] Description Input Output Sample Input Sample Input Sample Output 84 131 27 84 HINT 本来这道题想到了莫队算法,但是看到带修改就直接放弃了.结果看题解才发现带修改居然也能用莫队!!!之所以可以这样用,是因为修改的时间复

bzoj 3052: [wc2013]糖果公园(带修改的树上莫队)

3052: [wc2013]糖果公园 Time Limit: 200 Sec  Memory Limit: 512 MB Submit: 892  Solved: 425 [Submit][Status][Discuss] Description Input Output Sample Input Sample Input Sample Output 84 131 27 84 HINT Source [Submit][Status][Discuss] 题解:bzoj 2120 和 bzoj 37

【BZOJ】3052: [wc2013]糖果公园 树分块+待修改莫队算法

[题目]#58. [WC2013]糖果公园 [题意]给定n个点的树,m种糖果,每个点有糖果ci.给定n个数wi和m个数vi,第i颗糖果第j次品尝的价值是v(i)*w(j).q次询问一条链上每个点价值的和或修改一个点的糖果ci.n,m,q<=10^5. [算法]树分块+带修改莫队算法 [题解]参考:WC 2013 糖果公园 park 题解 by vfleaking 首先树分块,参考王室联邦的方法.确定块大小为B,一遍DFS可以分成若干大小为[B,3B]的块,性质是块内两点距离至多为B. 定义(x,

[BZOJ3052][UOJ#58][WC2013]糖果公园

试题描述 Candyland 有一座糖果公园,公园里不仅有美丽的风景.好玩的游乐项目,还有许多免费糖果的发放点,这引来了许多贪吃的小朋友来糖果公园玩. 糖果公园的结构十分奇特,它由 n 个游览点构成,每个游览点都有一个糖果发放处,我们可以依次将游览点编号为 1 至 n.有 n?1 条双向道路连接着这些游览点,并且整个糖果公园都是连通的,即从任何一个游览点出发都可以通过这些道路到达公园里的所有其它游览点. 糖果公园所发放的糖果种类非常丰富,总共 m 种,它们的编号依次为 1 至 m.每一个糖果发放

【Luogu P4074】[WC2013]糖果公园(树上带修改莫队)

题目描述 Candyland 有一座糖果公园,公园里不仅有美丽的风景.好玩的游乐项目,还有许多免费糖果的发放点,这引来了许多贪吃的小朋友来糖果公园游玩. 糖果公园的结构十分奇特,它由 \(n\) 个游览点构成,每个游览点都有一个糖果发放处,我们可以依次将游览点编号为 \(1\) 至 \(n\).有 \(n-1\) 条双向道路连接着这些游览点,并且整个糖果公园都是连通的,即从任何一个游览点出发都可以通过这些道路到达公园里的所有其它游览点. 糖果公园所发放的糖果种类非常丰富,总共有 \(m\) 种,

【uoj58】 WC2013—糖果公园

http://uoj.ac/problem/58 (题目链接) 题意:给定一棵树,每个点有一个颜色,提供两种操作:  1.询问两点间路径上的Σv[a[i]]*w[k],其中a[i]代表这个点的颜色,k表示这个点是这种颜色第k次出现  2.修改某个点的颜色 Solution  带修改树上莫队.  按左端点所在块为第一关键字,右端点所在块为第二关键字,时间为第三关键字,排序.可能会有疑问可不可以以右端点dfs序为第二关键字?这里我们为了突出第三关键字的作用,选择以右端点所在块为第二关键字.每个节点的

[UOJ #58][WC2013]糖果公园(树上带修改莫队)

Description Solution 树上带修改莫队…!VFK的题解写得很清楚啦 (我的程序为什么跑得这么慢…交的时候总有一种自己在卡测评的感觉…) #include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<algorithm> #define MAXN 100005 typedef long l