CF490F.Treeland Tour
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The "Road Accident" band is planning an unprecedented tour around Treeland. The RA fans are looking forward to the event and making bets on how many concerts their favorite group will have.
Treeland consists of n cities, some pairs of cities are connected by bidirectional roads. Overall the country has n−1 roads. We know that it is possible to get to any city from any other one. The cities are numbered by integers from 1 to n . For every city we know its value ri — the number of people in it.
We know that the band will travel along some path, having concerts in some cities along the path. The band's path will not pass one city twice, each time they move to the city that hasn't been previously visited. Thus, the musicians will travel along some path (without visiting any city twice) and in some (not necessarily all) cities along the way they will have concerts.
The band plans to gather all the big stadiums and concert halls during the tour, so every time they will perform in a city which population is larger than the population of the previously visited with concert city. In other words, the sequence of population in the cities where the concerts will be held is strictly increasing.
In a recent interview with the leader of the "road accident" band promised to the fans that the band will give concert in the largest possible number of cities! Thus the band will travel along some chain of cities of Treeland and have concerts in some of these cities, so that the population number will increase, and the number of concerts will be the largest possible.
The fans of Treeland are frantically trying to figure out how many concerts the group will have in Treeland. Looks like they can't manage without some help from a real programmer! Help the fans find the sought number of concerts.
输入格式
The first line of the input contains integer n(2 ≤ n ≤ 6000) -- the number of cities in Treeland. The next line contains n integers r1, r2, ⋯, rn(1 ≤ ri ≤ 106) , where ri is the population of the i-th city. The next n − 1 lines contain the descriptions of the roads, one road per line. Each road is defined by a pair of integers aj,bj(1 ≤ aj, bj ≤ n) -- the pair of the numbers of the cities that are connected by the j-th road. All numbers in the lines are separated by spaces.
输出格式
Print the number of cities where the "Road Accident" band will have concerts.
输入输出样例
输入#1
6 1 2 3 4 5 1 1 2 2 3 3 4 3 5 3 6
输出#1
4
输入#2
5 1 2 3 4 5 1 2 1 3 2 4 3 5
输出#2
3