CF986A.Fair

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Some company is going to hold a fair in Byteland. There are nn towns in Byteland and mm two-way roads between towns. Of course, you can reach any town from any other town using roads.

There are kk types of goods produced in Byteland and every town produces only one type. To hold a fair you have to bring at least ss different types of goods. It costs d(u,v)d(u,v) coins to bring goods from town uu to town vv where d(u,v)d(u,v) is the length of the shortest path from uu to vv . Length of a path is the number of roads in this path.

The organizers will cover all travel expenses but they can choose the towns to bring goods from. Now they want to calculate minimum expenses to hold a fair in each of nn towns.

输入格式

There are 44 integers nn , mm , kk , ss in the first line of input ( 1n1051 \le n \le 10^{5} , 0m1050 \le m \le 10^{5} , 1skmin(n,100)1 \le s \le k \le min(n, 100) ) — the number of towns, the number of roads, the number of different types of goods, the number of different types of goods necessary to hold a fair.

In the next line there are nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 1aik1 \le a_{i} \le k ), where aia_i is the type of goods produced in the ii -th town. It is guaranteed that all integers between 11 and kk occur at least once among integers aia_{i} .

In the next mm lines roads are described. Each road is described by two integers uu vv ( 1u,vn1 \le u, v \le n , uvu \ne v ) — the towns connected by this road. It is guaranteed that there is no more than one road between every two towns. It is guaranteed that you can go from any town to any other town via roads.

输出格式

Print nn numbers, the ii -th of them is the minimum number of coins you need to spend on travel expenses to hold a fair in town ii . Separate numbers with spaces.

输入输出样例

  • 输入#1

    5 5 4 3
    1 2 4 3 2
    1 2
    2 3
    3 4
    4 1
    4 5
    

    输出#1

    2 2 2 2 3 
    
  • 输入#2

    7 6 3 2
    1 2 3 3 2 2 1
    1 2
    2 3
    3 4
    2 5
    5 6
    6 7
    

    输出#2

    1 1 1 2 2 1 1 
    

说明/提示

Let's look at the first sample.

To hold a fair in town 11 you can bring goods from towns 11 ( 00 coins), 22 ( 11 coin) and 44 ( 11 coin). Total numbers of coins is 22 .

Town 22 : Goods from towns 22 ( 00 ), 11 ( 11 ), 33 ( 11 ). Sum equals 22 .

Town 33 : Goods from towns 33 ( 00 ), 22 ( 11 ), 44 ( 11 ). Sum equals 22 .

Town 44 : Goods from towns 44 ( 00 ), 11 ( 11 ), 55 ( 11 ). Sum equals 22 .

Town 55 : Goods from towns 55 ( 00 ), 44 ( 11 ), 33 ( 22 ). Sum equals 33 .

首页