zkw线段树

关于zkw线段树是啥,参见他本人的ppt:统计的力量

(相比递归版线段树:)
优点:代码量较少,空间需求略少(实际上不需要4倍),运行效率较高(非递归);
缺点:应用范围有限制.尽管可以稍加修改就支持单点更新/单点查询/区间更新/区间求和/区间RMQ等,但其中部分功能似乎不能同时实现…

总体来说,无论是代码量还是应用范围都介于树状数组和递归版线段树之间.

关于这个数据结构还在摸索…下面是两个栗子:

HDU 1166 敌兵布阵


https://cn.vjudge.net/problem/HDU-1166
(不要问为什么放vjudge的链接…因为懒)

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;

const int maxn = 5e5+5;
int T[maxn<<2], n, M;

inline void pushup(int x)
{
    T[x] = T[x<<1] + T[x<<1|1];
}

inline void build()
{
    for (M = 1; M <= n+1; M <<= 1);
    for (int i = M+1; i <= M+n; ++i)
        scanf("%d", T+i);
    for (int i = M-1; i; --i) pushup(i);
}

inline void add(int x, int y)
{
    for (T[x+=M] += y, x>>=1; x; x>>=1) pushup(x);
}

inline void sub(int x, int y)
{
    for (T[x+=M] -= y, x>>=1; x; x>>=1) pushup(x);
}

inline int query(int s, int t)
{
    int ans = 0;
    for (s += M-1, t += M+1; s^t^1; s>>=1, t>>=1)
    {
        if (~s&1) ans += T[s^1];
        if (t&1) ans += T[t^1];
    }
    return ans;
}

int main()
{
    int t, a, b, k = 0;
    char op[10];
    cin >> t;
    while (t--)
    {
        printf("Case %d:\n", ++k);
        memset(T, 0, sizeof T);
        scanf("%d", &n);
        build();
        while (~scanf("%s", op) && strcmp(op, "End"))
        {
            if (!strcmp(op, "Query")) {scanf("%d%d", &a, &b); printf("%d\n", query(a,b));}
            else if (!strcmp(op, "Add")) {scanf("%d%d", &a, &b); add(a,b);}
            else {scanf("%d%d", &a, &b); sub(a,b);}
        }
    }
    return 0;
}

EOJ 3389 线段树:点增加


http://acm.ecnu.edu.cn/problem/3389/
微坑的模板题.

#include <bits/stdc++.h>
using namespace std;

#define pushup(x) T[x]=T[x<<1]+T[x<<1|1]
const int maxn = 500005;
int n, m, M;
long long T[maxn<<4];

inline void build()
{
    for (M = 1; M <= n+1; M <<= 1);
    for (int i = M+1; i <= M+n; ++i) scanf("%lld", T+i);
    for (int i = M-1; i; --i) pushup(i);
}

inline void update(int x, int y)
{
    for (T[x+=M] += y, x>>=1; x; x>>=1) pushup(x);
}

inline void query(int s, int t)
{
    long long ans = 0;
    for (s += M-1, t += M+1; s^t^1; s>>=1, t>>=1)
    {
        if (~s&1) ans += T[s^1];
        if (t&1) ans += T[t^1];
    }
    printf("%lld\n", ans);
}

int main()
{
    int op, x, y;
    scanf("%d", &n);
    build();
    scanf("%d", &m);
    while (m--)
    {
        scanf("%d%d%d", &op, &x, &y);
        (op == 1) ? update(x, y) : query(x, y);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值