题目传送

做法

  • 对于每个人,inc为x,pref为y;对于每道菜,p和s为x,b为y
  • 于是根据题意有$$p[i]<=x<=s[i]$$$$p[i]+b[i]<=x+y$$$$p[i]-b[i]<=x-y$$
  • 把所有出现的点都离散化一下,然后开始扫x轴
  • 对于x+y和x-y这两个函数,分别开一个树状数组去维护合法点的个数
#include <cstdio>
#include <cctype>
#include <iostream>
#include <algorithm>
#include <vector>
#define rep(i, a, b) for (int i = a; i <= b; i++)
#define All(x) (x.begin()), (x.end())
using namespace std; template <typename T> void read(T &x) {
x = 0;
T s = 1, c = getchar();
for (; !isdigit(c); c = getchar())
if (c == '-') s = -1;
for (; isdigit(c); c = getchar())
x = x * 10 + c - 48;
x *= s;
} typedef long long ll;
const int maxn = 1e5 + 5;
int n, m, tot;
ll p[maxn], s[maxn], b[maxn], inc[maxn], pref[maxn];
int ans[maxn];
vector<ll> A, B;
vector<pair<ll, int>>que; class FenwickTree {
public:
int F[maxn << 1]; void Modify(int x, int val) {
for (; x <= maxn << 1; x += x&-x)
F[x] += val;
} int Query(int x) {
int ret = 0;
for (; x; x -= x&-x)
ret += F[x];
return ret;
}
}bitA, bitB; inline void Read() {
read(n), read(m);
rep(i, 1, n) read(p[i]);
rep(i, 1, n) read(s[i]);
rep(i, 1, n) read(b[i]);
rep(i, 1, m) read(inc[i]);
rep(i, 1, m) read(pref[i]);
} inline void Discrete() {
A.push_back(-(1LL << 60));
B.push_back(-(1LL << 60));
rep(i, 1, n) {
que.push_back({p[i], i});
que.push_back({s[i], i + maxn * 2});
A.push_back(p[i] + b[i]);
B.push_back(p[i] - b[i]);
}
rep(i, 1, m) {
que.push_back({inc[i], i + maxn});
A.push_back(inc[i] + pref[i]);
B.push_back(inc[i] - pref[i]);
} sort(All(que)), sort(All(A)), sort(All(B));
A.erase(unique(All(A)), A.end());
B.erase(unique(All(B)), B.end());
} inline void Sweep() {
int num = 0;
for (auto i : que) {
int x = i.second, y;
if (x < maxn) {
num++;
y = lower_bound(All(A), p[x] + b[x]) - A.begin();
bitA.Modify(y, 1);
y = lower_bound(All(B), p[x] - b[x]) - B.begin();
bitB.Modify(y, 1);
} else if (x < maxn * 2) {//注意排序顺序p < inc < s
x -= maxn;
y = lower_bound(All(A), inc[x] + pref[x]) - A.begin();
ans[x] += bitA.Query(y);
y = lower_bound(All(B), inc[x] - pref[x]) - B.begin();
ans[x] += bitB.Query(y);
ans[x] -= num;
//当一个x一定大于等于另一个x时,无论y的关系如何,这样容斥一定能得到正确答案
} else {
x -= maxn * 2;
num--;
y = lower_bound(All(A), p[x] + b[x]) - A.begin();
bitA.Modify(y, -1);
y = lower_bound(All(B), p[x] - b[x]) - B.begin();
bitB.Modify(y, -1);
}
}
rep(i, 1, m) printf("%d%c", ans[i], " \n"[i == m]);
} int main() {
Read();
Discrete();
Sweep();
return 0;
}

Codeforces 1139F(树状数组+扫描线)的更多相关文章

  1. Codeforces 786C Till I Collapse(树状数组+扫描线+倍增)

    [题目链接] http://codeforces.com/contest/786/problem/C [题目大意] 给出一个数列,问对于不同的k,将区间划分为几个, 每个区间出现不同元素个数不超过k时 ...

  2. Codeforces 703D Mishka and Interesting sum(树状数组+扫描线)

    [题目链接] http://codeforces.com/contest/703/problem/D [题目大意] 给出一个数列以及m个询问,每个询问要求求出[L,R]区间内出现次数为偶数的数的异或和 ...

  3. Codeforces 1197E Count The Rectangles(树状数组+扫描线)

    题意: 给你n条平行于坐标轴的线,问你能组成多少个矩形,坐标绝对值均小于5000 保证线之间不会重合或者退化 思路: 从下到上扫描每一条纵坐标为y的水平的线,然后扫描所有竖直的线并标记与它相交的线,保 ...

  4. HDU 3333 | Codeforces 703D 树状数组、离散化

    HDU 3333:http://acm.hdu.edu.cn/showproblem.php?pid=3333 这两个题是类似的,都是离线处理查询,对每次查询的区间的右端点进行排序.这里我们需要离散化 ...

  5. bzoj 4826: [Hnoi2017]影魔【单调栈+树状数组+扫描线】

    参考:https://www.cnblogs.com/lcf-2000/p/6789680.html 这是一个相对码量少的做法,用到了区间修改区间查询的树状数组,详见:www.cnblogs.com/ ...

  6. codeforces 341d (树状数组)

    problem Iahub and Xors 题目大意 一个n*n的矩阵,要求支持两种操作. 操作1:将一个子矩阵的所有值异或某个数. 操作2:询问某个子矩阵的所以值的异或和. 解题分析 由于异或的特 ...

  7. CodeForces 396C 树状数组 + DFS

    本主题开始看到以为段树或树状数组,但是,对于一个节点的有疑问的所有子节点的加权,这一条件被视为树的根,像 然后1号是肯定在第一层中,然后建立一个单向侧倒查,然后记录下来 其中每个节点 层,终于 两个节 ...

  8. [Usaco2014 Open Gold ]Cow Optics (树状数组+扫描线/函数式线段树)

    这道题一上手就知道怎么做了= = 直接求出原光路和从目标点出发的光路,求这些光路的交点就行了 然后用树状数组+扫描线或函数式线段树就能过了= = 大量的离散+模拟+二分什么的特别恶心,考试的时候是想到 ...

  9. Codeforces 276E(树状数组)

    题意:一棵树有n个节点,1是根节点,根节点的子节点是单链,然后如今有两种操作0 v x d表示距离节点v为d的节点权值都加x,操作1 v问v节点的权值,初始节点权值都是0. 题解:看了别人的题解才会的 ...

随机推荐

  1. leetcode 792. Number of Matching Subsequences

    Given string S and a dictionary of words words, find the number of words[i] that is a subsequence of ...

  2. 第一个自定义开发的Arcgis地图

    <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content ...

  3. CentOS 下源码安装LAMP环境

    一.简介 什么是LAMP    LAMP是一种Web网络应用和开发环境,是Linux, Apache, MySQL, Php/Perl的缩写,每一个字母代表了一个组件,每个组件就其本身而言都是在它所代 ...

  4. Entityframework连接Mysql遇到的问题

    1.mysql.data.entity的版本一定要与mysql-connector-net的版本保持一致,我用的版本是6.9.12 2.有时会遇到连接MySQL数据库时提示missing server ...

  5. 第九章-IO编程

    IO是输出输入的意思 在计算机中常用到的数据交换的地方是磁盘, 网络等 输入流是从外面(磁盘, 网络)流进内存 输出流是从内存流到外面(磁盘, 网络) 同步IO是指等待IO完成再继续执行 异步IO是在 ...

  6. Java中String args[]起什么作用?

    在百度知道上看到这样一个答案: 在命令提示符中运行该程序时 可以附加参数运行 输入的参数会存入到字符传数组 args[]中例如:在命令提示符中运行该程序的时候假设该程序在D的JAVA文件夹中D:JAV ...

  7. [PA 2011] Journeys

    [题目链接] https://www.lydsy.com/JudgeOnline/problem.php?id=3073 [算法] 考虑线段树优化建图 建立两棵线段树 , 一棵为入树 , 一棵为出树 ...

  8. 各个国家 不同字符集的unicode 编码范围

    原文地址:http://blog.csdn.NET/xzl04/article/details/6307416 0000-007F:C0控制符及基本拉丁文 (C0 Control and Basic  ...

  9. IIS 部署 SSAS

    转自:http://blog.csdn.net/jinjazz/article/details/4058368 1.首先到分析服务器的SQLServer安装目录中找到如下目录和文件 2.然后为IIS建 ...

  10. 3.1-3.3 HBase Shell创建表

    一.HBase Shell创建表 1.HBASE shell命令 ## hbase(main):001:0> create_namespace 'ns1' //创建命名空间:ns1 hbase( ...