CF375E.Red and Black Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You have a weighted tree, consisting of nn 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 xx .

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 pp and a black vertex qq , then in one operation you are allowed to paint pp black and paint qq red.

Print the minimum number of required actions.

输入格式

The first line contains two integers nn and xx (2<=n<=500; 1<=x<=109)(2<=n<=500; 1<=x<=10^{9}) . The next line contains nn integers, each of them is either a zero or one. If the ii -th number equals 1, then vertex ii of the tree is black, otherwise vertex ii is red. Next n1n-1 lines contain the tree edges. The jj -th line contains integers uj vj wju_{j} v_{j} w_{j} (1<=uj,vj<=n; ujvj; 1<=wj<=109)(1<=u_{j},v_{j}<=n; u_{j}≠v_{j}; 1<=w_{j}<=10^{9}) which means that the tree has an edge of weight wjw_{j} between vertices vjv_{j} and uju_{j} .

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

输出格式

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.

输入输出样例

  • 输入#1

    3 2
    1 0 0
    1 2 2
    2 3 2
    

    输出#1

    1
    
  • 输入#2

    4 2
    0 1 0 0
    1 2 2
    2 3 2
    3 4 2
    

    输出#2

    -1
    
首页