We build a social network from people numbered . Some pairs of people in the network will be friends. If person becomes a friend of person , then person also becomes a friend of person .
The people are added to the network in stages, which are also numbered from to . Person is added in stage . In stage 0, person 0 is added as the only person of the network. In each of the next stages, a person is added to the network by a host, who may be any person already in the network. At stage (), the host for that stage can add the incoming person into the network by one of the following three protocols:
IAmYourFriend
makes person a friend of the host only.MyFriendsAreYourFriends
makes person a friend of each person, who is a friend of the host at this moment. Note that this protocol does not make person a friend of the host.WeAreYourFriends
makes person a friend of the host, and also a friend of each person, who is a friend of the host at this moment.
After we build the network we would like to pick a sample for a survey, that is, choose a group of people from the network. Since friends usually have similar interests, the sample should not include any pair of people who are friends with each other. Each person has a survey confidence, expressed as a positive integer, and we would like to find a sample with the maximum total confidence.
Example
stage | host | protocol | friend relations added |
---|---|---|---|
1 | 0 | IAmYourFriend | (1, 0) |
2 | 0 | MyFriendsAreYourFriends | (2, 1) |
3 | 1 | WeAreYourFriends | (3, 1), (3, 0), (3, 2) |
4 | 2 | MyFriendsAreYourFriends | (4, 1), (4, 3) |
5 | 0 | IAmYourFriend | (5, 0) |
Initially the network contains only person 0. The host of stage 1 (person 0) invites the new person 1 through the IAmYourFriend
protocol, hence they become friends. The host of stage 2 (person 0 again) invites person 2 by MyFriendsAreYourFriends
, which makes person 1 (the only friend of the host) the only friend of person 2. The host of stage 3 (person 1) adds person 3 through WeAreYourFriends
, which makes person 3 a friend of person 1 (the host) and people 0 and 2 (the friends of the host). Stages 4 and 5 are also shown in the table above. The final network is shown in the following figure, in which the numbers inside the circles show the labels of people, and the numbers next to the circles show the survey confidence. The sample consisting of people 3 and 5 has total survey confidence equal to , which is the maximum possible total confidence.
Given the description of each stage and the confidence value of each person, find a sample with the maximum total confidence.
Input Specification
- Line : , the number of people
- Line :
- Line : .
confidence
: array of length ; gives the confidence value of person .host
: array of length ; gives the host of stage .protocol
: array of length ; gives the protocol code used in stage : forIAmYourFriend
, forMyFriendsAreYourFriends
, and forWeAreYourFriends
. Since there is no host in stage , and are undefined and will not be part of the input
Output Specification
The output should consist of one line containing one value, the maximum possible total confidence of a sample.
Sample Input 1
6
13 3 6 20 10 15
0 0 0 1 1 2 2 1 0 0
Sample Output 1
35
Sample Input 2
2
10 20
0 1
Sample Output 2
30
Sample Input 3
2
10 20
0 2
Sample Output 3
20
Sample Input 4
2
10 20
0 0
Sample Output 4
20
Sample Input 5
3
1 1 1
0 0 0 1
Sample Output 5
2
Sample Input 6
6
13 3 6 20 10 15
0 0 0 1 1 2 2 1 0 0
Sample Output 6
35
Subtasks
subtask | points | confidence | protocols used | |
---|---|---|---|---|
1 | 11 | All three protocols | ||
2 | 8 | Only MyFriendsAreYourFriends | ||
3 | 8 | Only WeAreYourFriends | ||
4 | 19 | Only IAmYourFriend | ||
5 | 23 | All confidence values are 1 | Both MyFriendsAreYourFriends and IAmYourFriend | |
6 | 31 | All three protocols |
Comments