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 n vertices with the root at vertex 1 . In the tree, each vertex represents a recreation with some type of activity ai . The friends need to choose 2 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)) , the more fun their life will be. Help Egor and Arseniy and find the maximum value of f(u,v) among all pairs of recreations!
†diff(u,v) — the number of different activities listed on the simple path from vertex u to vertex v .
†lca(u,v) — a vertex p such that it is at the maximum distance from the root and is a parent of both vertex u and vertex v .
输入格式
Each test consists of several test cases. The first line contains a single integer t ( 1≤t≤105 ) — the number of test cases. Then follows the description of the test cases.
The first line of each test case contains a single integer n ( 1≤n≤3⋅105 ).
The second line of each test case contains n−1 integers p2,p3,…,pn ( 1≤pi≤i−1 ), where pi — the parent of vertex i .
The third line of each test case contains n integers a1,a2,…,an ( 1≤ai≤n ), where ai — the number of the activity located at vertex i .
It is guaranteed that the sum of n over all test cases does not exceed 3⋅105 .
输出格式
For each test case, output the maximum value of f(u,v) for all pairs of recreations (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) , lca(11,12)=1 . Write down all activities on the path from 11 to 1 — [11,5,1,11] , among them there are 3 different activities, so diff(11,1)=3 . Also write down all activities on the path from 12 to 1 — [7,8,2,11] , among them there are 4 different activities, so diff(12,1)=4 . We get that f(11,12)=diff(12,1)⋅diff(11,1)=4⋅3=12 , which is the answer for this tree. It can be shown that a better answer is impossible to obtain.