eolymp
bolt
Try our new interface for solving problems
Problems

Welcome Party

Welcome Party

For many summers, the Agile Crystal Mining company ran an internship program for students. They greatly valued interns' ability to self-organize into teams. So as a get-to-know-you activity during orientation, they asked the interns to form teams such that all members of a given team either have first names beginning with the same letter, or last names beginning with the same letter. To make it interesting, they asked the interns to do this while forming as few teams as possible.

As an example, one year there were six interns: Stephen Cook, Vinton Cerf, Edmund Clarke, Judea Pearl, Shafi Goldwasser, and Silvio Micali. They were able to self-organize into three teams:

  • Stephen Cook, Vinton Cerf, and Edmund Clarke (whose last names all begin with C)
  • Shafi Goldwasser and Silvio Micali (whose first names begin with S)
  • Judea Pearl (not an interesting group, but everyone's first name in this group starts with J)

As a historical note, the company was eventually shut down due to a rather strange (and illegal) hiring practice - they refused to hire any interns whose last names began with the letter S, T, U, V, W, X, Y or Z (first names were not subject to such a whim, which was fortunate for our friend Vinton Cerf).

Input

Each year's group of interns is considered as a separate trial. A trial begins with a line containing a single integer n (1n300), designating the number of interns that year. Following that are n lines - one for each intern - with a line having a first and last name separated by one space. Names will not have any punctuation, and both the first name and last name will begin with an uppercase letter. In the case of last names, that letter will have an additional constraint that it be in the range from 'A' to 'R' inclusive. The end of the input is designated by a line containing the value 0. There will be at most 20 trials.

Output

For each trial, output a single integer k, designating the minimum number of teams that were necessary.

Time limit 1 second
Memory limit 128 MiB
Input example #1
6
Stephen Cook
Vinton Cerf
Edmund Clarke
Judea Pearl
Shafi Goldwasser
Silvio Micali
9
Richard Hamming
Marvin Minskey
John McCarthy
Edsger Dijkstra
Donald Knuth
Michael Rabin
John Backus
Robert Floyd
Tony Hoare
0
Output example #1
3
6
Source ACM Mid-Central Regional Programming Contest 2013