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

문제

You have 2n marbles on a square grid. The marbles are colored in n different colors such that there are exactly 2 marbles of each color. The marbles are placed at the coordinates (1,0), (2,0), ..., (2n, 0).

Your task is to draw a path for each color that joins the two marbles of that color. Each path should be composed of vertical or horizontal line segments between grid points. No two paths can intersect or touch each other. No path may cross the y=0 line. Each path can only touch the y=0 line at the position of the two marbles it is connecting, so the first and last line segment of each path must be vertical.

Given an arrangement of marbles, return the minimum height of a solution, or return -1 if no solution exists. The height is defined as the difference between the highest and lowest Y-coordinates of the paths used.

An example:

red red blue yellow blue yellow

One solution would be:

 +---+    +-----------+
 |       |    |                   |
red red blue yellow blue yellow
                        |                   |
                        +-----------+

The minimum height is 2 in this case.

입력

The first line of input gives the number of cases, TT test cases follow. The first line of each case contains n, the number of different colors for the marbles. The next line contains a string of 2n words separated by spaces which correspond to the colors of the marbles, in order from left to right. Each color is a string of lower case letters ('a' .. 'z') no longer than 10 characters. There will be exactly n different colors and each color will appear exactly twice.

Limits

  • 1 <= T <= 50.
  • 1 <= n <= 20.

출력

For each test case, output one line containing "Case #x: ", where x is the case number (starting from 1), followed by the height of any optimal solution, or -1 if no solution exists.

예제 입력 1

4
3
red red blue yellow blue yellow
3
red blue yellow red blue yellow
3
red blue yellow blue yellow red
3
red red blue blue yellow yellow

예제 출력 1

Case #1: 2
Case #2: -1
Case #3: 3
Case #4: 1

채점 및 기타 정보

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