Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.
Basically the problem can be formulated in the following way: Let's build a binary tree with edges labeled '
' and '
' with
leaves so that the sum of costs of paths to all leaves is minimal. This tree is also called 'Varn code tree'. Varn code tree is generated as follows. Start with a tree consisting of a root node from which descend
leaf nodes, the costs associated with the corresponding code symbols. Select the lowest cost node, let
be its cost, and let descend from it
leaf nodes
and
. Continue by selecting the lowest cost node from the new tree until
leaf nodes have been created.
This greedy approach can be done in
if we actually construct a tree. Basically we do the following thing
times: out of all nodes, we select the lowest, delete it, and create
new nodes by adding '
' and '
' to the one we have deleted. If all of this was done with some standard data structure, this is
.
If we actually don't need the tree and the coding itself, just the final cost, we can improve to
. Let's define an array
to represent this tree, where
will be the number of paths to the leaves in this tree with cost equal to
. While the sum of all values in
is lower than
, we do the following procedure: find an element with the lowest '
' where
. Then,
;
;
. Basically we do the same thing as in the previous algorithm, just instead of adding
edges to the leaf with the lowest cost, we do that to all of the leaves that have the lowest cost in the tree. Numbers in this array rise at least as fast as Fibonacci numbers, just the array will be sparse. So instead of an array, we use some data structure like a map, and we get
complexity.
DMOJ curator's note: This solution is not
. Consider
and
.
Comments