A14497 | Eye-Pleasing City Park Tour
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There is a city park represented as a tree with $n$ attractions as its vertices and $n - 1$ rails as its edges. The $i$ -th attraction has happiness value $a_i$ .
Each rail has a color. It is either black if $t_i = 0$ , or white if $t_i = 1$ . Black trains only operate on a black rail track, and white trains only operate on a white rail track. If you are previously on a black train and want to ride a white train, or you are previously on a white train and want to ride a black train, you need to use $1$ ticket.
The path of a tour must be a simple path — it must not visit an attraction more than once. You do not need a ticket the first time you board a train. You only have $k$ tickets, meaning you can only switch train types at most $k$ times. In particular, you do not need a ticket to go through a path consisting of one rail color.
Define $f(u, v)$ as the sum of happiness values of the attractions in the tour $(u, v)$ , which is a simple path that starts at the $u$ -th attraction and ends at the $v$ -th attraction. Find the sum of $f(u,v)$ for all valid tours $(u, v)$ ( $1 \leq u \leq v \leq n$ ) that does not need more than $k$ tickets, modulo $10^9 + 7$ .
Each rail has a color. It is either black if $t_i = 0$ , or white if $t_i = 1$ . Black trains only operate on a black rail track, and white trains only operate on a white rail track. If you are previously on a black train and want to ride a white train, or you are previously on a white train and want to ride a black train, you need to use $1$ ticket.
The path of a tour must be a simple path — it must not visit an attraction more than once. You do not need a ticket the first time you board a train. You only have $k$ tickets, meaning you can only switch train types at most $k$ times. In particular, you do not need a ticket to go through a path consisting of one rail color.
Define $f(u, v)$ as the sum of happiness values of the attractions in the tour $(u, v)$ , which is a simple path that starts at the $u$ -th attraction and ends at the $v$ -th attraction. Find the sum of $f(u,v)$ for all valid tours $(u, v)$ ( $1 \leq u \leq v \leq n$ ) that does not need more than $k$ tickets, modulo $10^9 + 7$ .
输入格式
The first line contains two integers $n$ and $k$ ( $2 \leq n \leq 2 \cdot 10^5$ , $0 \leq k \leq n-1$ ) — the number of attractions in the city park and the number of tickets you have.
The second line contains $n$ integers $a_1, a_2,\ldots, a_n$ ( $0 \leq a_i \leq 10^9$ ) — the happiness value of each attraction.
The $i$ -th of the next $n - 1$ lines contains three integers $u_i$ , $v_i$ , and $t_i$ ( $1 \leq u_i, v_i \leq n$ , $0 \leq t_i \leq 1$ ) — an edge between vertices $u_i$ and $v_i$ with color $t_i$ . The given edges form a tree.
The second line contains $n$ integers $a_1, a_2,\ldots, a_n$ ( $0 \leq a_i \leq 10^9$ ) — the happiness value of each attraction.
The $i$ -th of the next $n - 1$ lines contains three integers $u_i$ , $v_i$ , and $t_i$ ( $1 \leq u_i, v_i \leq n$ , $0 \leq t_i \leq 1$ ) — an edge between vertices $u_i$ and $v_i$ with color $t_i$ . The given edges form a tree.
输出格式
Output an integer denoting the total happiness value for all valid tours $(u, v)$ ( $1 \leq u \leq v \leq n$ ), modulo $10^9 + 7$ .
输入输出样例
输入 #1
5 0 1 3 2 6 4 1 2 1 1 4 0 3 2 1 2 5 0
输出 #1
45
输入 #2
3 1 1 1 1 1 2 1 3 2 0
输出 #2
10
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted