A11245 | Masha and Cactus
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Masha is fond of cacti. When she was a little girl, she decided to plant a tree. Now Masha wants to make a nice cactus out of her tree.
Recall that tree is a connected undirected graph that has no cycles. Cactus is a connected undirected graph such that each vertex belongs to at most one cycle.
Masha has some additional edges that she can add to a tree. For each edge she knows which vertices it would connect and the beauty of this edge. Masha can add some of these edges to the graph if the resulting graph is a cactus. Beauty of the resulting cactus is sum of beauties of all added edges.
Help Masha find out what maximum beauty of the resulting cactus she can achieve.
Recall that tree is a connected undirected graph that has no cycles. Cactus is a connected undirected graph such that each vertex belongs to at most one cycle.
Masha has some additional edges that she can add to a tree. For each edge she knows which vertices it would connect and the beauty of this edge. Masha can add some of these edges to the graph if the resulting graph is a cactus. Beauty of the resulting cactus is sum of beauties of all added edges.
Help Masha find out what maximum beauty of the resulting cactus she can achieve.
输入格式
The first line of the input data contains two integers $n$ and $m$ — the number of vertices in a tree, and the number of additional edges available ( $3<=n<=2·10^{5}$ ; $0<=m<=2·10^{5}$ ).
Let us describe Masha's tree. It has a root at vertex 1. The second line contains $n-1$ integers: $p_{2},p_{3},...,p_{n}$ , here $p_{i}$ — is the parent of a vertex $i$ — the first vertex on a path from the vertex $i$ to the root of the tree ( $1<=p_{i}<i$ ).
The following $m$ lines contain three integers $u_{i}$ , $v_{i}$ and $c_{i}$ — pairs of vertices to be connected by the additional edges that Masha can add to the tree and beauty of edge ( $1<=u_{i},v_{i}<=n$ ; $u_{i}≠v_{i}$ ; $1<=c_{i}<=10^{4}$ ).
It is guaranteed that no additional edge coincides with the edge of the tree.
Let us describe Masha's tree. It has a root at vertex 1. The second line contains $n-1$ integers: $p_{2},p_{3},...,p_{n}$ , here $p_{i}$ — is the parent of a vertex $i$ — the first vertex on a path from the vertex $i$ to the root of the tree ( $1<=p_{i}<i$ ).
The following $m$ lines contain three integers $u_{i}$ , $v_{i}$ and $c_{i}$ — pairs of vertices to be connected by the additional edges that Masha can add to the tree and beauty of edge ( $1<=u_{i},v_{i}<=n$ ; $u_{i}≠v_{i}$ ; $1<=c_{i}<=10^{4}$ ).
It is guaranteed that no additional edge coincides with the edge of the tree.
输出格式
Output one integer — the maximum beauty of a cactus Masha can achieve.
输入输出样例
输入 #1
7 3 1 1 2 2 3 3 4 5 1 6 7 1 2 3 1
输出 #1
2
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted