A12564 | Dish Shopping
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $m$ people living in a city. There are $n$ dishes sold in the city. Each dish $i$ has a price $p_i$ , a standard $s_i$ and a beauty $b_i$ . Each person $j$ has an income of $inc_j$ and a preferred beauty $pref_j$ .
A person would never buy a dish whose standard is less than the person's income. Also, a person can't afford a dish with a price greater than the income of the person. In other words, a person $j$ can buy a dish $i$ only if $p_i \leq inc_j \leq s_i$ .
Also, a person $j$ can buy a dish $i$ , only if $|b_i-pref_j| \leq (inc_j-p_i)$ . In other words, if the price of the dish is less than the person's income by $k$ , the person will only allow the absolute difference of at most $k$ between the beauty of the dish and his/her preferred beauty.
Print the number of dishes that can be bought by each person in the city.
A person would never buy a dish whose standard is less than the person's income. Also, a person can't afford a dish with a price greater than the income of the person. In other words, a person $j$ can buy a dish $i$ only if $p_i \leq inc_j \leq s_i$ .
Also, a person $j$ can buy a dish $i$ , only if $|b_i-pref_j| \leq (inc_j-p_i)$ . In other words, if the price of the dish is less than the person's income by $k$ , the person will only allow the absolute difference of at most $k$ between the beauty of the dish and his/her preferred beauty.
Print the number of dishes that can be bought by each person in the city.
输入格式
The first line contains two integers $n$ and $m$ ( $1 \leq n \leq 10^5$ , $1 \leq m \leq 10^5$ ), the number of dishes available in the city and the number of people living in the city.
The second line contains $n$ integers $p_i$ ( $1 \leq p_i \leq 10^9$ ), the price of each dish.
The third line contains $n$ integers $s_i$ ( $1 \leq s_i \leq 10^9$ ), the standard of each dish.
The fourth line contains $n$ integers $b_i$ ( $1 \leq b_i \leq 10^9$ ), the beauty of each dish.
The fifth line contains $m$ integers $inc_j$ ( $1 \leq inc_j \leq 10^9$ ), the income of every person.
The sixth line contains $m$ integers $pref_j$ ( $1 \leq pref_j \leq 10^9$ ), the preferred beauty of every person.
It is guaranteed that for all integers $i$ from $1$ to $n$ , the following condition holds: $p_i \leq s_i$ .
The second line contains $n$ integers $p_i$ ( $1 \leq p_i \leq 10^9$ ), the price of each dish.
The third line contains $n$ integers $s_i$ ( $1 \leq s_i \leq 10^9$ ), the standard of each dish.
The fourth line contains $n$ integers $b_i$ ( $1 \leq b_i \leq 10^9$ ), the beauty of each dish.
The fifth line contains $m$ integers $inc_j$ ( $1 \leq inc_j \leq 10^9$ ), the income of every person.
The sixth line contains $m$ integers $pref_j$ ( $1 \leq pref_j \leq 10^9$ ), the preferred beauty of every person.
It is guaranteed that for all integers $i$ from $1$ to $n$ , the following condition holds: $p_i \leq s_i$ .
输出格式
Print $m$ integers, the number of dishes that can be bought by every person living in the city.
输入输出样例
输入 #1
3 3 2 1 3 2 4 4 2 1 1 2 2 3 1 2 4
输出 #1
1 2 0
输入 #2
4 3 1 2 1 1 3 3 1 3 2 1 3 2 1 1 3 1 2 1
输出 #2
0 2 3
In the first example, the first person can buy dish $2$ , the second person can buy dishes $1$ and $2$ and the third person can buy no dishes.
In the second example, the first person can buy no dishes, the second person can buy dishes $1$ and $4$ , and the third person can buy dishes $1$ , $2$ and $4$ .
In the second example, the first person can buy no dishes, the second person can buy dishes $1$ and $4$ , and the third person can buy dishes $1$ , $2$ and $4$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted