Hide

Problem K
Split Decisions

A Split Decisions puzzle is a type of crossword in which each across and down answer is a pair of words instead of a single word (as in standard crossword puzzles). Each pair of words are identical except in exactly two adjacent positions for which letters have been provided in the puzzle – these sets of letters serve as the clue for the pair of words. In the left half of Figure 1, the letter pairs “IN” and “CR” are given, and the words “SINEW” and “SCREW” can be used to solve that clue. The right half of the figure shows a typical Split Decisions puzzle.

\includegraphics[width=0.8\textwidth ]{split-dec}
Figure 1: A small Split Decisions puzzle, with an example solved clue.

While we could ask you to solve a given Split Decisions puzzle, we’ve decided on a slightly different task for you. Given a list of words, we want you to find pairs of words which could be used in a Split Decisions puzzle. Specifically, each pair must differ in exactly two consecutive letters AND be the only possible pair of words that work for those sets of letters (i.e., no other pair of words in the list of words solve that clue).

For example, if your list of words contained the words CELL, GULL, GUSH, HALL, and HASH, you could make two clues: [CE/GU]_ _ (for the answer pair CELL/GULL) and [CE/HA]_ _ (for the answer pair CELL/HALL). Note that the clue [GU/HA]_ _ has two possible solutions (GULL/HALL and GUSH/HASH) so it should not be considered.

Input

The first line contains a positive integer $n$ ($1 \leq n \leq 1\, 500$) indicating the number of words in the word list. This is followed by $n$ lines each containing one word. Each word consists of uppercase letters and no word has less than $3$ or more than $20$ letters.

Output

The number of unique pairs of words in the input for which a valid Split Decisions clue exists.

Sample Input 1 Sample Output 1
5
CELL
GULL
GUSH
HALL
HASH
2

Please log in to submit a solution to this problem

Log in