题目链接

#include <iostream>
#include <vector>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <complex>
#include <cmath>
#include <map>
#include <set>
#include <string>
#include <queue>
#include <stack>
#include <bitset>
using namespace std;
#define pb(x) push_back(x)
#define ll long long
#define mk(x, y) make_pair(x, y)
#define lson l, m, rt<<1
#define mem(a) memset(a, 0, sizeof(a))
#define rson m+1, r, rt<<1|1
#define mem1(a) memset(a, -1, sizeof(a))
#define mem2(a) memset(a, 0x3f, sizeof(a))
#define rep(i, n, a) for(int i = a; i<n; i++)
#define fi first
#define se second
typedef complex <double> cmx;
typedef pair<int, int> pll;
const double PI = acos(-1.0);
const double eps = 1e-;
const int mod = 1e9+;
const int inf = ;
const int dir[][] = { {-, }, {, }, {, -}, {, } };
const int maxn = 1e5+;
int v[maxn*], n, b[maxn], cnt, num, sum[maxn*], ans[maxn];
struct node
{
int l, r, id, val;
}a[maxn];
bool cmp1(const node& lhs, const node& rhs)
{
return lhs.id < rhs.id;
}
bool cmp2(const node& lhs, const node& rhs)
{
if(lhs.r != rhs.r)
return lhs.r > rhs.r;
if(lhs.l != rhs.l)
return lhs.l < rhs.l;
return lhs.id < rhs.id;
}
int lowbit(int x) {return x&(-x);}
void update(int x, int val)
{
while(x <= cnt) {
sum[x] += val;
x += lowbit(x);
}
}
int query(int x)
{
int ret = ;
while(x) {
ret += sum[x];
x -= lowbit(x);
}
return ret;
}
void cdq(int l, int r)
{
if(l == r) return ;
int m = l+r>>;
cdq(l, m);
cdq(m+, r);
sort(a+l, a++r, cmp2);
for(int i = l; i <= r; i++) {
if(a[i].id <= m && a[i].val)
update(a[i].l, a[i].val);
if(a[i].id > m && !a[i].val)
ans[a[i].id] += query(a[i].l);
}
for(int i = l; i <= r; i++)
if(a[i].id <= m && a[i].val)
update(a[i].l, -a[i].val); }
void solve()
{
mem(ans);
mem(sum);
sort(v, v+cnt);
cnt = unique(v, v+cnt)-v;
for(int i = ; i <= n; i++) {
a[i].l = lower_bound(v, v+cnt, a[i].l)-v+;
a[i].r = lower_bound(v, v+cnt, a[i].r)-v+;
}
cdq(, n);
sort(a+, a++n, cmp1);
for(int i = ; i <= n; i++) {
if(!a[i].val)
printf("%d\n", ans[i]);
}
}
int main()
{
int x;
while(~scanf("%d", &n)) {
cnt = num = ;
for(int i = ; i <= n; i++) {
char ch[];
scanf("%s", ch);
a[i].id = i;
if(ch[] == 'C') {
scanf("%d", &x);
a[i].l = a[b[x]].l;
a[i].r = a[b[x]].r;
a[i].val = -;
} else {
scanf("%d%d", &a[i].l, &a[i].r);
v[cnt++] = a[i].l;
v[cnt++] = a[i].r;
if(ch[] == 'D') {
b[++num] = i;
a[i].val = ;
} else {
a[i].val = ;
}
}
}
solve();
}
return ;
}

acdream 1157Segments cdq分治的更多相关文章

  1. ACdream 1157 Segments(CDQ分治)

    题目链接:http://acdream.info/problem?pid=1157 Problem Description 由3钟类型操作:1)D L R(1 <= L <= R < ...

  2. ACdream 1157 Segments CDQ分治

    题目链接:https://vjudge.net/problem/ACdream-1157 题意: Problem Description 由3钟类型操作: 1)D L R(1 <= L < ...

  3. 【ACdream】1157 Segments cdq分治

    Segments   Problem Description 由3钟类型操作:1)D L R(1 <= L <= R <= 1000000000) 增加一条线段[L,R]2)C i ...

  4. ACdream 1157 (cdq分治)

    题目链接 Segments Time Limit: 4000/2000MS (Java/Others)Memory Limit: 20000/10000KB (Java/Others) Problem ...

  5. 【教程】简易CDQ分治教程&学习笔记

    前言 辣鸡蒟蒻__stdcall终于会CDQ分治啦!       CDQ分治是我们处理各类问题的重要武器.它的优势在于可以顶替复杂的高级数据结构,而且常数比较小:缺点在于必须离线操作. CDQ分治的基 ...

  6. BZOJ 2683 简单题 ——CDQ分治

    [题目分析] 感觉CDQ分治和整体二分有着很本质的区别. 为什么还有许多人把他们放在一起,也许是因为代码很像吧. CDQ分治最重要的是加入了时间对答案的影响,x,y,t三个条件. 排序解决了x ,分治 ...

  7. HDU5618 & CDQ分治

    Description: 三维数点 Solution: 第一道cdq分治...感觉还是很显然的虽然题目不能再傻逼了... Code: /*=============================== ...

  8. 初识CDQ分治

    [BZOJ 1176:单点修改,查询子矩阵和]: 1176: [Balkan2007]Mokia Time Limit: 30 Sec  Memory Limit: 162 MBSubmit: 200 ...

  9. HDU5322 Hope(DP + CDQ分治 + NTT)

    题目 Source http://acm.hdu.edu.cn/showproblem.php?pid=5322 Description Hope is a good thing, which can ...

随机推荐

  1. MVC+simpleinjector 简单使用

    一.首先添加NuGet包如下图

  2. Unicode解码、URL编码/解码

    + (NSString *) stringByReplaceUnicode:(NSString *)string { NSMutableString *convertedString = [strin ...

  3. 修复CefSharp浏览器组件中文输入Bug

    概述 最近在win10上开发wpf应用,需要将CefSharp中wpf版本的浏览器组件(版本号v51.0.0)嵌入到应用中,但是发现不支持中文输入,GitHub上有这个问题的描述,参照其提到的方法可以 ...

  4. [Linked List]Remove Nth Node From End of List

    Total Accepted: 84303 Total Submissions: 302714 Difficulty: Easy Given a linked list, remove the nth ...

  5. GetProcessIdOfThread在WinXP及之前操作系统的替代实现

    还是学习VLD2.X版本看到的: 在Windows XP及之前的操作系统没有提供GetProcessIdOfThread的API,这里给出了一个替代的实现方式: 头文件: #if _WIN32_WIN ...

  6. DWZ 框架remote 验证字段唯一性方法提交后台,如果是中文会显示成乱码问题

    关于jquery  remote 验证字段唯一性方法提交后台,如果是中文会显示成乱码问题.可以直接修改tomcat 配置文件server.xml  设置 URIEncoding=utf-8属性,将ge ...

  7. JS中定义类的方法<转>

    转载地址:http://blog.csdn.net/sdlfx/article/details/1842218 PS(个人理解): 1) 类通过prototype定义的成员(方法或属性),是每个类对象 ...

  8. Flink Program Guide (5) -- 预定义的Timestamp Extractor / Watermark Emitter (DataStream API编程指导 -- For Java)

    本文翻译自Pre-defined Timestamp Extractors / Watermark Emitter ------------------------------------------ ...

  9. Python学习笔记(一)基础

    学习资料 跟着廖雪峰的Python教程学习Python,大家可以去官方网站查看学习教程.使用的Python版本为3.0.x,解释器为CPython.本系列博客为学习笔记,记录跟随廖老师所学知识,同时会 ...

  10. LinkList的实现

    public class MyLinkedList<AnyType> implements Iterable<AnyType> { @Override public Itera ...