CF852I.Dating

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This story is happening in a town named BubbleLand. There are nn houses in BubbleLand. In each of these nn houses lives a boy or a girl. People there really love numbers and everyone has their favorite number ff . That means that the boy or girl that lives in the ii -th house has favorite number equal to fif_{i} .

The houses are numerated with numbers 11 to nn .

The houses are connected with n1n-1 bidirectional roads and you can travel from any house to any other house in the town. There is exactly one path between every pair of houses.

A new dating had agency opened their offices in this mysterious town and the citizens were very excited. They immediately sent qq questions to the agency and each question was of the following format:

  • a ba\ b — asking how many ways are there to choose a couple (boy and girl) that have the same favorite number and live in one of the houses on the unique path from house aa to house bb .

Help the dating agency to answer the questions and grow their business.

输入格式

The first line contains an integer nn ( 1<=n<=1051<=n<=10^{5} ), the number of houses in the town.

The second line contains nn integers, where the ii -th number is 11 if a boy lives in the ii -th house or 00 if a girl lives in ii -th house.

The third line contains nn integers, where the ii -th number represents the favorite number fif_{i} ( 1<=fi<=1091<=f_{i}<=10^{9} ) of the girl or boy that lives in the ii -th house.

The next n1n-1 lines contain information about the roads and the ii -th line contains two integers aia_{i} and bib_{i} ( 1<=ai,bi<=n1<=a_{i},b_{i}<=n ) which means that there exists road between those two houses. It is guaranteed that it's possible to reach any house from any other.

The following line contains an integer qq ( 1<=q<=1051<=q<=10^{5} ), the number of queries.

Each of the following qq lines represents a question and consists of two integers aa and bb ( 1<=a,b<=n1<=a,b<=n ).

输出格式

For each of the qq questions output a single number, the answer to the citizens question.

输入输出样例

  • 输入#1

    7
    1 0 0 1 0 1 0
    9 2 9 2 2 9 9
    2 6
    1 2
    4 2
    6 5
    3 6
    7 4
    2
    1 3
    7 5
    

    输出#1

    2
    3
    

说明/提示

In the first question from house 11 to house 33 , the potential couples are (1,3)(1,3) and (6,3)(6,3) .

In the second question from house 77 to house 55 , the potential couples are (7,6)(7,6) , (4,2)(4,2) and (4,5)(4,5) .

首页