A13342 | Autocompletion
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 \in 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.
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 \in 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 \le n \le 10^6$ ).
Then $n$ lines follow, the $i$ -th line contains one integer $p_i$ ( $0 \le p_i < i$ ) and one lowercase Latin character $c_i$ . 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 \ge 1$ ) is the result of appending the character $c_i$ to the string $p_i$ . It is guaranteed that all these strings are distinct.
The next line contains one integer $k$ ( $1 \le k \le n$ ) — the number of strings in $S$ .
The last line contains $k$ integers $a_1$ , $a_2$ , ..., $a_k$ ( $1 \le a_i \le n$ , all $a_i$ 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 $s_i$ , then $S = {s_{a_1}, s_{a_2}, \dots, s_{a_k}}$ .
Then $n$ lines follow, the $i$ -th line contains one integer $p_i$ ( $0 \le p_i < i$ ) and one lowercase Latin character $c_i$ . 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 \ge 1$ ) is the result of appending the character $c_i$ to the string $p_i$ . It is guaranteed that all these strings are distinct.
The next line contains one integer $k$ ( $1 \le k \le n$ ) — the number of strings in $S$ .
The last line contains $k$ integers $a_1$ , $a_2$ , ..., $a_k$ ( $1 \le a_i \le n$ , all $a_i$ 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 $s_i$ , then $S = {s_{a_1}, s_{a_2}, \dots, s_{a_k}}$ .
输出格式
Print $k$ integers, the $i$ -th of them should be equal to the minimum number of seconds required to type the string $s_{a_i}$ .
输入输出样例
输入 #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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted