CF1139F.Dish Shopping

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There are mm people living in a city. There are nn dishes sold in the city. Each dish ii has a price pip_i , a standard sis_i and a beauty bib_i . Each person jj has an income of incjinc_j and a preferred beauty prefjpref_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 jj can buy a dish ii only if piincjsip_i \leq inc_j \leq s_i .

Also, a person jj can buy a dish ii , only if biprefj(incjpi)|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 kk , the person will only allow the absolute difference of at most kk 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 nn and mm ( 1n1051 \leq n \leq 10^5 , 1m1051 \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 nn integers pip_i ( 1pi1091 \leq p_i \leq 10^9 ), the price of each dish.

The third line contains nn integers sis_i ( 1si1091 \leq s_i \leq 10^9 ), the standard of each dish.

The fourth line contains nn integers bib_i ( 1bi1091 \leq b_i \leq 10^9 ), the beauty of each dish.

The fifth line contains mm integers incjinc_j ( 1incj1091 \leq inc_j \leq 10^9 ), the income of every person.

The sixth line contains mm integers prefjpref_j ( 1prefj1091 \leq pref_j \leq 10^9 ), the preferred beauty of every person.

It is guaranteed that for all integers ii from 11 to nn , the following condition holds: pisip_i \leq s_i .

输出格式

Print mm 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 22 , the second person can buy dishes 11 and 22 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 11 and 44 , and the third person can buy dishes 11 , 22 and 44 .

首页