CF1916E.Happy Life in University

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Egor and his friend Arseniy are finishing school this year and will soon enter university. And since they are very responsible guys, they have started preparing for admission already.

First of all, they decided to take care of where they will live for the long four years of study, and after visiting the university's website, they found out that the university dormitory can be represented as a root tree with nn vertices with the root at vertex 11 . In the tree, each vertex represents a recreation with some type of activity aia_i . The friends need to choose 22 recreations (not necessarily different) in which they will settle. The guys are convinced that the more the value of the following function f(u,v)=diff(u,lca(u,v))diff(v,lca(u,v))f(u, v) = diff(u, lca(u, v)) \cdot diff(v, lca(u, v)) , the more fun their life will be. Help Egor and Arseniy and find the maximum value of f(u,v)f(u, v) among all pairs of recreations!

diff(u,v)^{\dagger} diff(u, v) — the number of different activities listed on the simple path from vertex uu to vertex vv .

lca(u,v)^{\dagger} lca(u, v) — a vertex pp such that it is at the maximum distance from the root and is a parent of both vertex uu and vertex vv .

输入格式

Each test consists of several test cases. The first line contains a single integer tt ( 1t1051 \le t \le 10^5 ) — the number of test cases. Then follows the description of the test cases.

The first line of each test case contains a single integer nn ( 1n31051 \le n \le 3 \cdot 10^{5} ).

The second line of each test case contains n1{n - 1} integers p2,p3,,pnp_2, p_3, \ldots,p_n ( 1pii11 \le p_i \le i - 1 ), where pip_i — the parent of vertex ii .

The third line of each test case contains n{n} integers a1,a2,,ana_1, a_2, \ldots,a_n ( 1ain1 \le a_i \le n ), where aia_i — the number of the activity located at vertex ii .

It is guaranteed that the sum of nn over all test cases does not exceed 31053 \cdot 10^5 .

输出格式

For each test case, output the maximum value of f(u,v)f(u, v) for all pairs of recreations (u,v)(u, v) .

输入输出样例

  • 输入#1

    4
    2
    1
    1 2
    7
    1 1 2 2 3 3
    6 5 2 3 6 5 6
    13
    1 1 1 2 2 2 3 3 4 5 6 6
    2 2 2 1 4 9 7 2 5 2 1 11 2
    12
    1 1 1 2 2 3 4 4 7 7 6
    11 2 1 11 12 8 5 8 8 5 11 7

    输出#1

    2
    9
    9
    12

说明/提示

Consider the fourth test case. The tree has the following structure:

All recreations are colored. The same colors mean that the activities in the recreations match. Consider the pair of vertices (11,12)(11, 12) , lca(11,12)=1lca(11, 12) = 1 . Write down all activities on the path from 1111 to 11[11,5,1,11][11, 5, 1, 11] , among them there are 33 different activities, so diff(11,1)=3diff(11, 1) = 3 . Also write down all activities on the path from 1212 to 11[7,8,2,11][7, 8, 2, 11] , among them there are 44 different activities, so diff(12,1)=4diff(12, 1) = 4 . We get that f(11,12)=diff(12,1)diff(11,1)=43=12f(11, 12) = diff(12, 1) \cdot diff(11, 1) = 4 \cdot 3 = 12 , which is the answer for this tree. It can be shown that a better answer is impossible to obtain.

首页