CF1070I.Privatization of Roads in Berland
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n cities and m two-way roads in Berland, each road connecting two distinct cities.
Recently the Berland government has made a tough decision to transfer ownership of the roads to private companies. In total, there are 100500 private companies in Berland, numbered by integers from 1 to 100500 . After the privatization, every road should belong to exactly one company.
The anti-monopoly committee demands that after the privatization each company can own at most two roads. The urbanists of Berland also stated their opinion: each city should be adjacent to the roads owned by at most k companies.
Help the government to distribute the roads between the companies so that both conditions are satisfied. That is, each company gets at most two roads, and each city has roads of at most k distinct companies adjacent to it.
输入格式
Input contains one or several test cases. The first line contains an integer t ( 1≤t≤300 ) — the number of test cases in the input. Solve test cases separately, test cases are completely independent and do not affect each other.
The following lines describe the test cases. Each case starts with a line consisting of three space-separated integers n , m and k ( 2≤n≤600 , 1≤m≤600 , 1≤k≤n−1 ) — the number of cities, the number of roads and the maximum diversity of the roads adjacent to a city.
Then m lines follow, each having a pair of space-separated integers ai , bi ( 1≤ai,bi≤n ; ai=bi ). It means that the i -th road connects cities ai and bi . All roads are two-way. There is at most one road between a pair of the cities.
The sum of n values for all test cases doesn't exceed 600 . The sum of m values for all test cases doesn't exceed 600 .
输出格式
Print t lines: the i -th line should contain the answer for the i -th test case. For a test case, print a sequence of integers c1,c2,…,cm separated by space, where ci ( 1≤ci≤100500 ) is the company which owns the i -th road in your plan. If there are multiple solutions, output any of them. If there is no solution for a test case, print c1=c2=…=cm=0 .
输入输出样例
输入#1
3 3 3 2 1 2 2 3 3 1 4 5 2 1 2 1 3 1 4 2 3 2 4 4 6 2 1 2 1 3 1 4 2 3 2 4 3 4
输出#1
1 2 3 2 1 1 2 3 0 0 0 0 0 0