CF1312G.Autocompletion
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a set of strings S . Each string consists of lowercase Latin letters.
For each string in this set, you want to calculate the minimum number of seconds required to type this string. To type a string, you have to start with an empty string and transform it into the string you want to type using the following actions:
- if the current string is t , choose some lowercase Latin letter c and append it to the back of t , so the current string becomes t+c . This action takes 1 second;
- use autocompletion. When you try to autocomplete the current string t , a list of all strings s∈S such that t is a prefix of s is shown to you. This list includes t itself, if t is a string from S , and the strings are ordered lexicographically. You can transform t into the i -th string from this list in i seconds. Note that you may choose any string from this list you want, it is not necessarily the string you are trying to type.
What is the minimum number of seconds that you have to spend to type each string from S ?
Note that the strings from S are given in an unusual way.
输入格式
The first line contains one integer n ( 1≤n≤106 ).
Then n lines follow, the i -th line contains one integer pi ( 0≤pi<i ) and one lowercase Latin character ci . These lines form some set of strings such that S is its subset as follows: there are n+1 strings, numbered from 0 to n ; the 0 -th string is an empty string, and the i -th string ( i≥1 ) is the result of appending the character ci to the string pi . It is guaranteed that all these strings are distinct.
The next line contains one integer k ( 1≤k≤n ) — the number of strings in S .
The last line contains k integers a1 , a2 , ..., ak ( 1≤ai≤n , all ai are pairwise distinct) denoting the indices of the strings generated by above-mentioned process that form the set S — formally, if we denote the i -th generated string as si , then S=sa1,sa2,…,sak .
输出格式
Print k integers, the i -th of them should be equal to the minimum number of seconds required to type the string sai .
输入输出样例
输入#1
10 0 i 1 q 2 g 0 k 1 e 5 r 4 m 5 h 3 p 3 e 5 8 9 1 10 6
输出#1
2 4 1 3 3
输入#2
8 0 a 1 b 2 a 2 b 4 a 4 b 5 c 6 d 5 2 3 4 7 8
输出#2
1 2 2 4 4
说明/提示
In the first example, S consists of the following strings: ieh, iqgp, i, iqge, ier.