CF291E.Tree-String Problem

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A rooted tree is a non-directed connected graph without any cycles with a distinguished vertex, which is called the tree root. Consider the vertices of a rooted tree, that consists of nn vertices, numbered from 1 to nn . In this problem the tree root is the vertex number 1.

Let's represent the length of the shortest by the number of edges path in the tree between vertices vv and uu as d(v,u)d(v,u) .

A parent of vertex vv in the rooted tree with the root in vertex rr (vr)(v≠r) is vertex pvp_{v} , such that d(r,pv)+1=d(r,v)d(r,p_{v})+1=d(r,v) and d(pv,v)=1d(p_{v},v)=1 . For example, on the picture the parent of vertex v=5v=5 is vertex p5=2p_{5}=2 .

One day Polycarpus came across a rooted tree, consisting of nn vertices. The tree wasn't exactly ordinary: it had strings written on its edges. Polycarpus positioned the tree on the plane so as to make all edges lead from top to bottom if you go from the vertex parent to the vertex (see the picture). For any edge that lead from vertex pvp_{v} to vertex vv (1<v<=n) , he knows string svs_{v} that is written on it. All strings are written on the edges from top to bottom. For example, on the picture s7s_{7} ="ba". The characters in the strings are numbered starting from 0.

An example of Polycarpus's tree (corresponds to the example from the statement)Polycarpus defines the position in this tree as a specific letter on a specific string. The position is written as a pair of integers (v,x)(v,x) that means that the position is the xx -th letter of the string svs_{v} ( 1<v<=n , 0<=x<|s_{v}| ), where sv|s_{v}| is the length of string svs_{v} . For example, the highlighted letters are positions ( 2,12,1 ) and ( 3,13,1 ).

Let's consider the pair of positions (v,x)(v,x) and (u,y)(u,y) in Polycarpus' tree, such that the way from the first position to the second goes down on each step. We will consider that the pair of such positions defines string zz . String zz consists of all letters on the way from (v,x)(v,x) to (u,y)(u,y) , written in the order of this path. For example, in the picture the highlighted positions define string "bacaba".

Polycarpus has a string tt , he wants to know the number of pairs of positions that define string tt . Note that the way from the first position to the second in the pair must go down everywhere. Help him with this challenging tree-string problem!

输入格式

The first line contains integer nn (2<=n<=105)(2<=n<=10^{5}) — the number of vertices of Polycarpus's tree. Next n1n-1 lines contain the tree edges. The ii -th of them contains number pi+1p_{i+1} and string si+1s_{i+1} (1<=pi+1<=n; pi+1(i+1))(1<=p_{i+1}<=n; p_{i+1}≠(i+1)) . String si+1s_{i+1} is non-empty and consists of lowercase English letters. The last line contains string tt . String tt consists of lowercase English letters, its length is at least 2.

It is guaranteed that the input contains at most 31053·10^{5} English letters.

输出格式

Print a single integer — the required number.

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    7
    1 ab
    5 bacaba
    1 abacaba
    2 aca
    5 ba
    2 ba
    aba
    

    输出#1

    6
    
  • 输入#2

    7
    1 ab
    5 bacaba
    1 abacaba
    2 aca
    5 ba
    2 ba
    bacaba
    

    输出#2

    4
    

说明/提示

In the first test case string "aba" is determined by the pairs of positions: (2, 0) and (5, 0); (5, 2) and (6, 1); (5, 2) and (3, 1); (4, 0) and (4, 2); (4, 4) and (4, 6); (3, 3) and (3, 5).

Note that the string is not defined by the pair of positions (7, 1) and (5, 0), as the way between them doesn't always go down.

首页