今天写了到偏序问题,发现博主真的是个傻X

传送门

以前的写法

/**************************************************************
    Problem: 3262
    User: MiEcoku
    Language: C++
    Result: Accepted
    Time:3416 ms
    Memory:6296 kb
****************************************************************/

#include <cstdio>
#include <algorithm>
using namespace std;
#define mid ( l + r >> 1)
#define lowbit(x) ( x & -x)

struct GG {
    int x, y, z, id, w;
    void get () {
        scanf("%d%d%d", &x, &y, &z);
    }
}a[], b[];

], k;
; ; x -= lowbit(x)) ans += dis[x]; return ans; }
void add(int x, int y) { for ( ; x <= k; x += lowbit(x)) dis[x] += y; }

bool cmp1(GG a, GG b) { return a.x < b.x || (a.x == b.x && a.y < b.y) || (a.x == b.x && a.y == b.y && a.z < b.z); }
bool cmp2(GG a, GG b) { return a.y < b.y || (a.y == b.y && a.z < b.z); }

];
void cdq(int l, int r) {
    , r);
    sort(b+l, b+mid+, cmp2); sort(b+mid+, b+r+, cmp2);
    ;
    for ( int i = l; i <= mid; i ++) {
        while( b[q].y < b[i].y && q <= r) ans[b[q].id] += query(b[q].z), q ++;
        add(b[i].z, b[i].w);
    }
    while( q <= r) ans[b[q].id] += query(b[q].z), q ++;
    for ( int i = l; i <= mid; i ++) add(b[i].z, -b[i].w);
}

];
int main() {
    scanf("%d%d", &_, &k);
    ; i <= _; i ++) a[i].get();
    sort( a+, a++_, cmp1);
    ; i <= _; i ++) {
        cnt ++;
        ].x || a[i].y != a[i+].y || a[i].z != a[i+].z)
        b[++ n] = a[i], b[n].w = cnt, cnt = , b[n].id = n;
    }
    cdq(, n);
    ; i <= n; i ++)
        d[ans[b[i].id]+b[i].w-] += b[i].w;
    ; i < _; i ++) printf("%d\n", d[i]);
}

可以看出这是个n * logn^2 的算法,这也是博主在大多数地方看到的写法,结果傻叉的以为cdq就是n * long n ^ 2 的算法

实际上可不可以更快?

void cdq(int l, int r) {
    , r);
    sort(b+l, b+mid+, cmp2); sort(b+mid+, b+r+, cmp2);
    ;
    for ( int i = l; i <= mid; i ++) {
        while( b[q].y < b[i].y && q <= r) ans[b[q].id] += query(b[q].z), q ++;
        add(b[i].z, b[i].w);
    }
    while( q <= r) ans[b[q].id] += query(b[q].z), q ++;
    for ( int i = l; i <= mid; i ++) add(b[i].z, -b[i].w);
}

可以看出,在cdq内部排了个序,然而真的有这个必要吗? 答案是否定的

我们都知道归并排序,可以看出,内部这个排序无非是想要将第二位排序

但在内部这个循环内就已经排序,所以那个排序可以省略

我们新开个数组

void cdq(int l, int r) {
    , r);
    , cnt = ;
    for ( int i = l; i <= mid; i ++) {
        while( b[q].y < b[i].y && q <= r) ans[b[q].id] += query(b[q].z), T[++ cnt] = b[q], q ++;
        add(b[i].z, b[i].w); T[++ cnt] = b[i];
    }
    while( q <= r) ans[b[q].id] += query(b[q].z), T[++ cnt] = b[q], q ++;
    for ( int i = l; i <= mid; i ++) add(b[i].z, -b[i].w);
    cnt = ;
    for ( int i = l; i <= r; ++ i) b[i] = T[++ cnt];
}

这样,我们就省略了内部的一个排序问题,做到n * long n

还能再快不?

能!

    for ( int i = l; i <= mid; i ++) add(b[i].z, -b[i].w);

对于这句话,我们能不能将它优化掉?

我们考虑加入一个时间戳 tim

int query(int x, int K) {
    ;
    ; x -= lowbit(x)) if( mark[x] == K) ans += dis[x];
    return ans;
}
void add(int x, int y, int K) {
    for ( ; x <= k; x += lowbit(x)) if( mark[x] == K) dis[x] += y;
    else mark[x] = K, dis[x] = y;
}

然后对树状数组进行点修改

这样我们就将常数再次优化了下

上总代码

/**************************************************************
    Problem: 3262
    User: MiEcoku
    Language: C++
    Result: Accepted
    Time:1428 ms
    Memory:9028 kb
****************************************************************/

/**************************************************************
    Problem: 3262
    User: MiEcoku
    Language: C++
    Result: Accepted
    Time:3416 ms
    Memory:6296 kb
****************************************************************/

#include <cstdio>
#include <algorithm>
using namespace std;
#define mid ( l + r >> 1)
#define lowbit(x) ( x & -x)

struct GG {
    int x, y, z, id, w;
    void get () {
        scanf("%d%d%d", &x, &y, &z);
    }
}a[], b[], T[];

], k, tim, mark[];
int query(int x, int K) {
    ;
    ; x -= lowbit(x)) if( mark[x] == K) ans += dis[x];
    return ans;
}
void add(int x, int y, int K) {
    for ( ; x <= k; x += lowbit(x)) if( mark[x] == K) dis[x] += y;
    else mark[x] = K, dis[x] = y;
}

bool cmp1(GG a, GG b) { return a.x < b.x || (a.x == b.x && a.y < b.y) || (a.x == b.x && a.y == b.y && a.z < b.z); }
bool cmp2(GG a, GG b) { return a.y < b.y || (a.y == b.y && a.z < b.z); }

];
void cdq(int l, int r) {
    , r);
    , cnt = ; ++ tim;
    for ( int i = l; i <= mid; i ++) {
        while( b[q].y < b[i].y && q <= r) ans[b[q].id] += query(b[q].z, tim), T[++ cnt] = b[q], q ++;
        add(b[i].z, b[i].w, tim); T[++ cnt] = b[i];
    }
    while( q <= r) ans[b[q].id] += query(b[q].z, tim), T[++ cnt] = b[q], q ++;
    cnt = ;
    for ( int i = l; i <= r; ++ i) b[i] = T[++ cnt];
}

];
int main() {
    scanf("%d%d", &_, &k);
    ; i <= _; i ++) a[i].get();
    sort( a+, a++_, cmp1);
    ; i <= _; i ++) {
        cnt ++;
        ].x || a[i].y != a[i+].y || a[i].z != a[i+].z)
        b[++ n] = a[i], b[n].w = cnt, cnt = , b[n].id = n;
    }
    cdq(, n);
    ; i <= n; i ++)
        d[ans[b[i].id]+b[i].w-] += b[i].w;
    ; i < _; i ++) printf("%d\n", d[i]);
}

博主因为傻逼不知道这么写然后考试写的KT-tree被卡了


[BZOJ 3262]陌上开花的更多相关文章

  1. bzoj 3262 陌上花开 - CDQ分治 - 树状数组

    Description 有n朵花,每朵花有三个属性:花形(s).颜色(c).气味(m),又三个整数表示.现要对每朵花评级,一朵花的级别是它拥有的美丽能超过的花的数量.定义一朵花A比另一朵花B要美丽,当 ...

  2. BZOJ.3262.陌上花开([模板]CDQ分治 三维偏序)

    题目链接 BZOJ3262 洛谷P3810 /* 5904kb 872ms 对于相邻x,y,z相同的元素要进行去重,并记录次数算入贡献(它们之间产生的答案是一样的,但不去重会..) */ #inclu ...

  3. Luogu 3810 & BZOJ 3262 陌上花开/三维偏序 | CDQ分治

    Luogu 3810 & BZOJ 3263 陌上花开/三维偏序 | CDQ分治 题面 \(n\)个元素,每个元素有三个值:\(a_i\), \(b_i\) 和 \(c_i\).定义一个元素的 ...

  4. 【BZOJ 3262】 3262: 陌上花开 (CDQ分治)

    3262: 陌上花开 Description 有n朵花,每朵花有三个属性:花形(s).颜色(c).气味(m),又三个整数表示.现要对每朵花评级,一朵花的级别是它拥有的美丽能超过的花的数量.定义一朵花A ...

  5. BZOJ 3262 陌上花开 ——CDQ分治

    [题目分析] 多维问题,我们可以按照其中一维排序,然后把这一维抽象的改为时间. 然后剩下两维,就像简单题那样,排序一维,树状数组一维,按照时间分治即可. 挺有套路的一种算法. 时间的抽象很巧妙. 同种 ...

  6. bzoj 3262 陌上花开

    本质是一个三维偏序,一位排序后cdq分治,一维在子函数里排序,一维用树状数组维护. 把三维相等的合并到一个里面. #include<iostream> #include<cstdio ...

  7. BZOJ 3262 陌上花开 CDQ分治

    = =原来复杂度还是nlog^2(n) Orz 被喷了 #include<cstdio> #include<cstdlib> #include<algorithm> ...

  8. BZOJ 3262: 陌上花开 [CDQ分治 三维偏序]

    Description 有n朵花,每朵花有三个属性:花形(s).颜色(c).气味(m),又三个整数表示.现要对每朵花评级,一朵花的级别是它拥有的美丽能超过的花的数量.定义一朵花A比另一朵花B要美丽,当 ...

  9. 【刷题】BZOJ 3262 [HNOI2008]GT考试

    Description 阿申准备报名参加GT考试,准考证号为N位数X1X2....Xn(0<=Xi<=9),他不希望准考证号上出现不吉利的数字. 他的不吉利数学A1A2...Am(0< ...

随机推荐

  1. CAD2015 安装出错

    Autodesk安装失败后回滚连带把在D盘创建的安装目录都给删除掉了. 把.net 4.6卸载干净之后就可以成功安装CAD2015了.只安装.net 4.5就行了.

  2. day63-webservice 03.解析cxf提供的例子

    Path配置: C:\Program Files (x86)\ScanSign;E:\app\zhongzh\product\11.2.0\dbhome_1\bin;D:\app\zhongzh\pr ...

  3. 【HDU3949】XOR

    [题目大意] 给定一个数组,求这些数组通过异或能得到的数中的第k小是多少. 传送门:http://vjudge.net/problem/HDU-3949 [题解] 首先高斯消元求出线性基,然后将k按照 ...

  4. Linux设置串口波特率等参数

    转自 http://blog.csdn.net/zoomdy/article/details/50921336 mingdu.zheng at gmail dot com stty查看串口参数 stt ...

  5. Entity Framework edmx(mapping文件)

    <?xml version="1.0" encoding="utf-8"?><edmx:Edmx Version="2.0" ...

  6. asp.net web 自定义控件

    0.调用代码 protected override void Page_Load(object sender, EventArgs e) { //给基类服务接口复制,可不付 if (IsPostBac ...

  7. httpClient-3.1学习笔记

    http://hc.apache.org/httpclient-3.x/tutorial.htmlThe general process for using HttpClient consists o ...

  8. 全排列——DFS实现

    原创 之间就写过一篇全排列的博客:https://www.cnblogs.com/chiweiming/p/8727164.html 详细介绍请回看,用的方法(暂且就叫)是“交换法”,其实思路就是DF ...

  9. duilib入门简明教程 -- 第一个程序 Hello World(3)

    小伙伴们有点迫不及待了么,来看一看Hello World吧: 新建一个空的win32项目,新建一个main.cpp文件,将以下代码复制进去: #include <windows.h> #i ...

  10. Xcode打包提交至itunes connect后,提交审核成功,随后出现二进制文件无效

    1.问题描述 Xcode打包提交至itunes connect后,提交审核成功,应用处于待审核状态,过了大概半个小时状态更改为二进制文件无效 2.原因分析 2.1 登陆在苹果中预留的邮箱 ---- 邮 ...