跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2220. Red and Black Tree

    ID: 2226 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 10 上传者: 标签>动态规划模拟数学编程与模拟挑战难度共享题库Codeforces英文题面题目来源题面语言

Red and Black Tree

题目描述

E. Red and Black Tree
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You have a weighted tree, consisting of n vertices. Each vertex is either painted black or is painted red. A red and black tree is called beautiful, if for any its vertex we can find a black vertex at distance at most x.

The distance between two nodes is the shortest path between them.

You have a red and black tree. Your task is to make it beautiful in the minimum number of color swap operations. In one color swap operation, you can choose two vertices of different colors and paint each of them the other color. In other words, if you choose a red vertex p and a black vertex q, then in one operation you are allowed to paint p black and paint q red.

Print the minimum number of required actions.

Input

The first line contains two integers n and x (2≤n≤500;1≤x≤109). The next line contains n integers, each of them is either a zero or one. If the i-th number equals 1, then vertex i of the tree is black, otherwise vertex i is red. Next n-1 lines contain the tree edges. The j-th line contains integers ujvjwj (1≤uj,vjn;ujvj;1≤wj≤109) which means that the tree has an edge of weight wj between vertices vj and uj.

Assume that the tree vertices are numbered from 1 to n.

Output

Print a single integer − the minimum number of required swap operations.

If it is impossible to get a beautiful tree at any number of operations, print -1.

Examples
Input
3 2
1 0 0
1 2 2
2 3 2
Output
1
Input
4 2
0 1 0 0
1 2 2
2 3 2
3 4 2
Output
-1

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1826 题。保留原作者与原赛事署名。