For the text "abracadabra", the tree produced by the above procedure can look like the one on the left of the following picture, where each internal node is labeled with the weight of the subtree rooted at that node. Notice that the obtained tree can also look like the one on the right of the picture, among others, because at steps 3a and 3b the set s may contain several trees with minimum weight.
For each different character in the text, its code depends on the path that exists, in the nal tree, from the root to the leaf corresponding to the character. The length of the code is the number of edges in that path (which is coincident with the number of internal nodes in the path). Assuming the tree on the left was built by the algorithm, the code for "r" has length $3$ while the code for "d" has length $4$.
Your task is, given the lengths of the $N$ codes chosen by the algorithm, find the minimum size (total number of characters) that the text can have so as the generated codes have those $N$ lengths.