#P13252. [GCJ 2014 #1B] The Bored Traveling Salesman
[GCJ 2014 #1B] The Bored Traveling Salesman
题目描述
Your boss is sending you out on an international sales trip. What joy!
You have cities (numbered from to ) to visit and can get to them using a set of bidirectional flights that go between the cities.
All of the cities must be visited at least once. To do this you can book any number of tickets, subject to the following conditions:
- Each ticket consists of flights, one from a specific city to another specific city (this is called the outbound flight), and the other one from city to city (this is called the return flight).
- You must use the outbound flight before the corresponding return flight (you can use other flights in between).
- At most outbound flight going to each city, although there is no limit on the return flights (multiple return flights can go to the same city).
- You must use all flights which belong to the tickets you booked.
- You can otherwise visit the cities in any order you like.
- You can start your trip from any city you choose. You may not take an outbound flight to your starting city.
Now you could try to minimize the total distance travelled, but you did that last time, so that would be boring. Instead you noticed that each city has a distinct digit ZIP (postal) code. When you visit a city for the first time (this includes the city which you start from) you write down the zip code and concatenate these into one large number (concatenate them in the order which you visited each city for the first time). What is the smallest number you can achieve?
输入格式
The first line of the input gives the number of test cases, . test cases follow.
Each test case starts with a single line containing two integers: the number of cities and the number of possible bidirectional flights .
lines then follow, with the -th line containing the -digit zip code of the -th city. No ZIP code will have leading zeros and all ZIP codes in each test case will be distinct.
lines then follow, each containing two integers and () indicating that a bidirectional flight exists between the -th city and the -th city. All flights will be distinct within each test case.
It is guaranteed that you can visit every city following the rules above.
输出格式
For each test case, output one line containing "Case #: ", where is the test case number (starting from ) and is the smallest number you can achieve by concatenating the ZIP codes along your trip.
4
3 2
10001
20000
10000
1 2
2 3
5 4
36642
28444
50012
29651
10953
1 4
2 3
2 5
4 5
5 5
36642
28444
50012
29651
10953
1 2
1 4
2 3
2 5
4 5
6 6
10001
10002
10003
10004
10005
10006
1 2
1 6
2 3
2 4
3 5
4 5
Case #1: 100002000010001
Case #2: 1095328444500122965136642
Case #3: 1095328444366422965150012
Case #4: 100011000210003100041000510006
提示
Sample Explanation
In the last sample test case, the following is the sequence of what you should do to achieve the smallest number:
- Start from city , write .
- Outbound flight from to , write .
- Outbound flight from to , write .
- Return flight from to .
- Outbound flight from to , write .
- Outbound flight from to , write .
- Return flight from to .
- Return flight from to .
- Return flight from to .
- Outbound flight from to , write .
- Return flight from to .
Limits
- .
- $0 \leq \text{M} \leq \text{N} \times (\text{N} - 1) / 2$.
Small dataset(15 Pts)
- Time limit:
603 seconds. - .
Large dataset(30 Pts)
- Time limit:
1205 seconds. - .