P15960 [ICPC 2018 Jakarta R] Future Generation
Description
Andi is getting married! He and his partner plan to have $N$ children. To avoid any hassle in the future, Andi wants to decide all their children’s name in advance. Specifically, he wants each child to have a name which is lexicographically **larger** than any of his/her older siblings. Of course, his partner also agrees with this idea. String $A$ is lexicographically larger than string $B$ if and only if $B$ is a prefix of $A$ or there exists an index $i$ where $A_i > B_i$ and $A_j = B_j$ for all $j < i$. Note that a proper name can be as short as one character, but it cannot be an empty string.
Life is good for Andi, until one day he told his soon-to-be-grandmother-in-law (i.e. his partner’s grandma) about this marriage plan. After learning that Andi plans to have $N$ children with her granddaughter, she gave him $N$ names to be used. Moreover, the $i^{th}$ name can only be used for the $i^{th}$ child.
After going through a long debate with her grandma, Andi came into an agreement: The $i^{th}$ child’s name should be a subsequence of the $i^{th}$ name her grandma gave. A string $A$ is a subsequence of string $B$ if $A$ can be obtained by deleting zero or more characters from $B$ without changing the remaining characters’ order, e.g., `ABC` is a subsequence of `DAEBCCB`, but `EFG` is not a subsequence of `FABEGC`.
Even though Andi dislikes the given list of names, he still wants to impress his partner by showing that he can satisfy both her grandma’s wish and his own desire (i.e. each child’s name is lexicographically larger than any of his/her older siblings). However, Andi wonders, what is the maximum possible total length of their children names?
For example, let $N = 3$, and the names given by his partner’s grandma are (`KARIM`, `PARBUDI`, `CHANDRA`). Here are several example set of names which satisfies Andi’s desire:
- [`AR`, `BI`, `CRA`] with a total length of $2 + 2 + 3 = 7$.
- [`ARI`, `BUDI`, `CHANDRA`] with a total length of $3 + 4 + 7 = 14$.
- [`ARIM`, `ARUDI`, `CHANDRA`] with a total length of $4 + 5 + 7 = 16$.
- [`AIM`, `ARBUDI`, `CHANDRA`] with a total length of $3 + 6 + 7 = 16$.
- $\dots$
Among all sets of names which satisfy Andi’s desire in this example, the maximum total length is $16$. Note that there might be cases where valid set of names cannot be obtained. In such case, you should output `-1`. For example, let $N = 2$ and the names given by his partner’s grandma are (`ZORO`, `ANDI`). In this example, all subsequences of the $2^{nd}$ name are lexicographically smaller than all subsequences of the $1^{st}$ name, thus, no possible valid set of names can be obtained.
Input Format
Input begins with a line containing an integer $N$ ($1 \leq N \leq 15$) representing the number of children. The next $N$ lines, each contains a string $S_i$ ($1 \leq |S_i| \leq 15$) representing the $i^{th}$ name given by Andi’s soon-to-be-grandmother-in-law. $S_i$ contains only uppercase alphabets ($S_{ij} \in \{A - Z\}$).
Output Format
Output contains an integer in a line representing the maximum possible total length of their children names, or $-1$ if no possible valid set of names can be obtained.
Explanation/Hint
**Explanation for the sample input/output #3**
One possible solution is [AVE, FUN, IN, IPC, JAKARTA, NTY, TEEN] with a total length of $3 + 3 + 2 + 3 + 7 + 3 + 4 = 25$.