CF986A.Fair
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Some company is going to hold a fair in Byteland. There are n towns in Byteland and m two-way roads between towns. Of course, you can reach any town from any other town using roads.
There are k types of goods produced in Byteland and every town produces only one type. To hold a fair you have to bring at least s different types of goods. It costs d(u,v) coins to bring goods from town u to town v where d(u,v) is the length of the shortest path from u to v . 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 n towns.
输入格式
There are 4 integers n , m , k , s in the first line of input ( 1≤n≤105 , 0≤m≤105 , 1≤s≤k≤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 n integers a1,a2,…,an ( 1≤ai≤k ), where ai is the type of goods produced in the i -th town. It is guaranteed that all integers between 1 and k occur at least once among integers ai .
In the next m lines roads are described. Each road is described by two integers u v ( 1≤u,v≤n , u=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 n numbers, the i -th of them is the minimum number of coins you need to spend on travel expenses to hold a fair in town i . 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 1 you can bring goods from towns 1 ( 0 coins), 2 ( 1 coin) and 4 ( 1 coin). Total numbers of coins is 2 .
Town 2 : Goods from towns 2 ( 0 ), 1 ( 1 ), 3 ( 1 ). Sum equals 2 .
Town 3 : Goods from towns 3 ( 0 ), 2 ( 1 ), 4 ( 1 ). Sum equals 2 .
Town 4 : Goods from towns 4 ( 0 ), 1 ( 1 ), 5 ( 1 ). Sum equals 2 .
Town 5 : Goods from towns 5 ( 0 ), 4 ( 1 ), 3 ( 2 ). Sum equals 3 .