zoukankan      html  css  js  c++  java
  • POJ 2763 Housewife Wind

    Housewife Wind
    Time Limit: 4000MS   Memory Limit: 65536K
    Total Submissions: 5798   Accepted: 1455

    Description

    After their royal wedding, Jiajia and Wind hid away in XX Village, to enjoy their ordinary happy life. People in XX Village lived in beautiful huts. There are some pairs of huts connected by bidirectional roads. We say that huts in the same pair directly connected. XX Village is so special that we can reach any other huts starting from an arbitrary hut. If each road cannot be walked along twice, then the route between every pair is unique.
    Since Jiajia earned enough money, Wind became a housewife. Their children loved to go to other kids, then make a simple call to Wind: 'Mummy, take me home!'
    At different times, the time needed to walk along a road may be different. For example, Wind takes 5 minutes on a road normally, but may take 10 minutes if there is a lovely little dog to play with, or take 3 minutes if there is some unknown strange smell surrounding the road.
    Wind loves her children, so she would like to tell her children the exact time she will spend on the roads. Can you help her?

    Input

    The first line contains three integers n, q, s. There are n huts in XX Village, q messages to process, and Wind is currently in hut s. n < 100001 , q < 100001. 
    The following n-1 lines each contains three integers a, b and w. That means there is a road directly connecting hut a and b, time required is w. 1<=w<= 10000. 
    The following q lines each is one of the following two types:
    Message A: 0 u     A kid in hut u calls Wind. She should go to hut u from her current position. Message B: 1 i w      The time required for i-th road is changed to w. Note that the time change will not happen when Wind is on her way. The changed can only happen when Wind is staying somewhere, waiting to take the next kid.

    Output

    For each message A, print an integer X, the time required to take the next child.

    Sample Input

    3 3 1
    1 2 1
    2 3 2
    0 2
    1 2 3
    0 3
    

    Sample Output

    1
    3
    

    树链剖分 ,边上有权 ,单点更新,区间查询


    #include <cstdio>
    #include <queue>
    #include <algorithm>
    #include <iostream>
    #include <cstring>
    
    using namespace std;
    #define root 1,n,1
    #define lr rt<<1
    #define rr rt<<1|1
    #define lson l,m,rt<<1
    #define rson m+1,r,rt<<1|1
    
    typedef long long LL;
    const int N= 100100;
    int n,q,s;
    int eh[N],et[N<<2],nxt[N<<2],w[N<<2],tot=0;
    int pos,p[N],top[N],rnk[N],dep[N],fa[N],son[N],siz[N];
    
    struct node
    {
        int u,v,w;
    }e[N<<2];
    
    void init()
    {
        memset(eh,-1,sizeof(eh));
        memset(son,-1,sizeof(son));
        tot=0;
        pos=0;
    }
    void addedge(int u,int v){
        et[tot]=v;nxt[tot]=eh[u];eh[u]=tot++;
        et[tot]=u;nxt[tot]=eh[v];eh[v]=tot++;
    }
    
    void dfs1(int u,int father,int d)
    {
        dep[u]=d;
        fa[u]=father;
        siz[u]=1;
        for(int i=eh[u];~i;i=nxt[i]){
            int v=et[i];
            if(v != father){
                dfs1(v,u,d+1);
                siz[u] += siz[v];
                if( son[u]==-1 || siz[v] > siz[son[u]])
                    son[u]=v;
            }
        }
    }
    void dfs2(int u,int tp)
    {
        top[u]=tp;
        p[u]= ++pos;
        rnk[ p[u] ]= u;
        if( son[u] == -1 )return ;
        dfs2(son[u], tp );
        for(int i=eh[u]; ~i ;i=nxt[i]){
            int v=et[i];
            if(v != son[u] && v!=fa[u] ){
                dfs2(v,v);
            }
        }
    }
    
    int sum[ N<<2 ];
    
    void Up(int rt)
    {
        sum[rt]=sum[lr]+sum[rr];
    }
    
    void build(int l,int r,int rt)
    {
        if(l == r ){
            sum[rt]=0;
            return ;
        }
        int m=(l+r)>>1;
        build(lson);
        build(rson);
        Up(rt);
    }
    
    void update(int l,int r,int rt,int x,int v)
    {
        if( l == r ){
            sum[rt]=v;
            return ;
        }
        int m=(l+r)>>1;
        if(x<=m)
            update(lson,x,v);
        if(x>m)
            update(rson,x,v);
        Up(rt);
    }
    int query(int l,int r,int rt,int L,int R)
    {
        int res=0;
        if( L<=l&&r<=R ){
            return sum[rt];
        }
        int m=(l+r)>>1;
        if(L <= m)
            res += query(lson,L,R);
        if(R > m)
            res += query(rson,L,R);
        return res;
    }
    
    int Q(int u,int v)
    {
        int res=0;
        int f1=top[u],f2=top[v];
        while(f1 != f2){
            if(dep[f1] < dep[f2]){
    
                swap(f1,f2);
                swap(u,v);
            }
            res += query(root,p[f1],p[u]);
            u=fa[f1];
            f1=top[u];
        }
        if(u==v)return res;
        if(dep[u]>dep[v])swap(u,v);
        res += query(root,p[son[u]],p[v]);
        return res;
    }
    int run()
    {
        int u,v,w;
        int op;
        while(~scanf("%d%d%d",&n,&q,&s)){
            init();
            for(int i= 0;i<n-1;++i){
                    scanf("%d%d%d",&e[i].u,&e[i].v,&e[i].w);
                    addedge(e[i].u,e[i].v);
                }
    
            dfs1(1,0,0);
            dfs2(1,1);
            build(root);
    
            for(int i=0;i<n-1;++i)
            {
                if(dep[e[i].u] > dep[e[i].v])
                    swap(e[i].u,e[i].v);
                update(root,p[e[i].v],e[i].w);
            }
    
            while(q--)
            {
                scanf("%d",&op);
                if( !op )
                {
                    scanf("%d",&u);
                    printf("%d
    ",Q(s,u));
                    s=u;
                }
                else {
                    scanf("%d%d",&v,&w);
                    update(root,p[ e[v-1].v ],w);
                }
            }
        }
        return 0;
    }
    int main()
    {
        //freopen("in.txt","r",stdin);
        ios::sync_with_stdio(0);
        return run();
    }
    only strive for your goal , can you make your dream come true ?
  • 相关阅读:
    linux系统中如何查看日志 (转)
    php 获取随机字符串(原创)
    php Aes 128位算法
    linux 在线实验
    number随时间随机递增每天 不同 php(原创)
    php 判断字符串包含中文(转)
    同步,异步 阻塞,非阻塞, 异步+回调机制 线程队列 事件Event 丶协程
    线程的理论知识 开启线程的两种方式(Thread) 线程和进程之间的对比 线程的其他方法 守护进程 互斥锁 死锁现象,递归锁 信号量
    获取进程以及父进程的pid 验证进程之间的数据隔离 join方法 进程对象的其他属性 僵尸进程与孤儿进程(存在Linux系统中) 守护进程
    进程基础知识 操作系统 操作系统的发展史(多道技术) 进程介绍 python并发编程之:多进程
  • 原文地址:https://www.cnblogs.com/hlmark/p/3932240.html
Copyright © 2011-2022 走看看