CF BUDDY
← Problems·

1070I · Privatization of Roads in Berland

2400 · flows, graph matchings, graphs

Problem: There are nn cities and mm 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 100500100500 private companies in Berland, numbered by integers from 11 to 100500100500. 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 kk 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 kk distinct companies adjacent to it.

Input Format: Input contains one or several test cases. The first line contains an integer tt (1t3001 \le t \le 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 nn, mm and kk (2n6002 \le n \le 600, 1m6001 \le m \le 600, 1kn11 \le k \le n - 1) — the number of cities, the number of roads and the maximum diversity of the roads adjacent to a city.

Then mm lines follow, each having a pair of space-separated integers aia_i, bib_i (1ai,bin1 \le a_i, b_i \le n; aibia_i \ne b_i). It means that the ii-th road connects cities aia_i and bib_i. All roads are two-way. There is at most one road between a pair of the cities.

The sum of nn values for all test cases doesn't exceed 600600. The sum of mm values for all test cases doesn't exceed 600600.

Output Format: Print tt lines: the ii-th line should contain the answer for the ii-th test case. For a test case, print a sequence of integers c1,c2,,cmc_1, c_2, \dots, c_m separated by space, where cic_i (1ci1005001 \le c_i \le 100500) is the company which owns the ii-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=0c_1=c_2=\ldots=c_m=0.

Sample Cases

Case 1

Input

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

Output

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

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback