CF607D.Power Tree
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Genos and Saitama went shopping for Christmas trees. However, a different type of tree caught their attention, the exalted Power Tree.
A Power Tree starts out as a single root vertex indexed 1 . A Power Tree grows through a magical phenomenon known as an update. In an update, a single vertex is added to the tree as a child of some other vertex.
Every vertex in the tree (the root and all the added vertices) has some value vi associated with it. The power of a vertex is defined as the strength of the multiset composed of the value associated with this vertex ( vi ) and the powers of its direct children. The strength of a multiset is defined as the sum of all elements in the multiset multiplied by the number of elements in it. Or in other words for some multiset S :
Saitama knows the updates that will be performed on the tree, so he decided to test Genos by asking him queries about the tree during its growth cycle.
An update is of the form 1 p v , and adds a new vertex with value v as a child of vertex p .
A query is of the form 2 u , and asks for the power of vertex u .
Please help Genos respond to these queries modulo 109+7 .
输入格式
The first line of the input contains two space separated integers v1 and q ( 1<=v_{1}<10^{9} , 1<=q<=200000 ) — the value of vertex 1 and the total number of updates and queries respectively.
The next q lines contain the updates and queries. Each of them has one of the following forms:
- 1 pi vi , if these line describes an update. The index of the added vertex is equal to the smallest positive integer not yet used as an index in the tree. It is guaranteed that pi is some already existing vertex and 1<=v_{i}<10^{9} .
- 2 ui , if these line describes a query. It is guaranteed ui will exist in the tree.
It is guaranteed that the input will contain at least one query.
输出格式
For each query, print out the power of the given vertex modulo 109+7 .
输入输出样例
输入#1
2 5 1 1 3 1 2 5 1 3 7 1 4 11 2 1
输出#1
344
输入#2
5 5 1 1 4 1 2 3 2 2 1 2 7 2 1
输出#2
14 94
说明/提示
For the first sample case, after all the updates the graph will have vertices labelled in the following manner: 1 — 2 — 3 — 4 — 5
These vertices will have corresponding values: 2 — 3 — 5 — 7 — 11
And corresponding powers: 344 — 170 — 82 — 36 — 11