시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB106660.000%

문제

It is time for the Google Code Jam Finals, and we all want to be there! Unfortunately, a few of us accidentally ended up going to Mountain View instead of the correct location: London, England. But don't worry - we can take the free Google shuttle service from Mountain View to London!

The shuttle service consists of M one-way routes connecting pairs of cities. For every route, you know from which city and to which city it's going, but unfortunately you do not know exactly how long these routes are. Instead, for every route, you only know that its length can be any integer value from ai to bi, inclusive.

I have taken Google shuttles many times before, so I have suggested a path of routes from Mountain View to London. But you worry that my path-finding skills are not as good as yours, and you want to check my work.

Given the path I am suggesting, could it possibly be a shortest path from Mountain View to London? If not, what is the ID of the first shuttle route on my path that is definitely not part of a shortest path (assuming that all previous shuttle routes have been taken according to the path I suggested)?

For example, suppose we have the following list of shuttle routes:

ID  | Start City           |  Destination City       |  Shuttle Length

---+----------------+--------------------+----------------

1     | Mountain View  |  London                   |  [100, 1000]

2    | Mountain View  |  Paris                        |  [500, 5000]

3    | Paris                   |  London                   |  [400, 600]

4    | Paris                   |  Moscow                  |  [500, 5000]

5    | Moscow              |  London                   |  [1, 10000]

I suggest the path Mountain View -> Paris -> Moscow -> London. The true shortest path might either be the direct route from Mountain View to London, or the path Mountain View -> Paris -> London. This means that the second route on my path (Paris -> Moscow) was the first one that is definitely not part of a shortest path.

입력

The first line of the input gives the number of test cases, T. T test cases follow. Each test begins with a line containing three positive integers N, M, and P. N represents the total number of cities (cities are numbered from 1 to N), M represents the total number of shuttle routes, and P represents the number of shuttle routes on my path from Mountain View (city #1) to London (city #2).

This is followed by M lines, each consisting of four integers, ui, vi, ai, bi. Each line represents the fact that there is a one-way shuttle route from city ui to city vi, and you know that its length can be any integer value from ai to bi, inclusive. The routes are given IDs from 1 to M in the same order of the input.

This is followed by a line consisting of P unique integers in the range from 1 to M. These represent, in order, the shuttle routes I am taking you on. Each one is an ID of a route from the previous list.

Limits

  • 1 ≤ T ≤ 10.
  • 1 ≤ ui, vi ≤ N.
  • 1 ≤ aibi ≤ 1000000.
  • My path is guaranteed to be a valid path from Mountain View (city #1) to London (city #2).
  • There might be more than one shuttle route between the same two cities, and there might be a shuttle route going from a city to itself. Also the suggested path might visit the same city more than once, but it will not use the same shuttle route more than once.
  • 2 ≤ N ≤ 20.
  • 1 ≤ M ≤ 20.
  • 1 ≤ P ≤ 10

출력

For each test case, output one line containing "Case #x: n", where x is the case number (starting from 1) and n is the ID of the first shuttle route in my path that could not possibly be part of the shortest path from Mountain View to London. If there is no such route, print "Looks Good To Me" instead.

예제 입력 1

3
4 5 3
1 2 100 1000
1 3 500 5000
3 2 400 600
3 4 500 5000
4 2 1 10000
2 4 5
3 3 2
1 3 1 1
3 2 1 1
1 2 1 2
1 2
5 6 3
1 3 1 1
4 2 1 9
1 4 1 1
3 5 2 2
5 2 2 2
3 4 1 2
1 6 2

예제 출력 1

Case #1: 4
Case #2: Looks Good To Me
Case #3: 6

출처

Contest > Google > Code Jam > Google Code Jam 2013 > Round 3 C1번

채점 및 기타 정보

  • 예제는 채점하지 않는다.