Editorial for IOI '12 P4 - Ideal City
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.
Submitting an official solution before solving the problem yourself is a bannable offence.
Simple solutions use Floyd-Warshall algorithm or iterated BFS on the unary-cost edges, and both require space: time is
for Floyd-Warshall, and
for the iterated BFS, which requires
times the number
of edges.
A more efficient solution is the following one.
- For every row
, consider the connected groups of cells on row
; each such group becomes a node of a tree, with a weight corresponding to the cardinality of the group. Two nodes of this tree are adjacent iff there are at least two cells in the corresponding groups sharing a common edge. Repeat the same argument for every column
.
- The above description yields two node-weighted trees, one (let us call it TH) corresponding to horizontal node-groups and another (TV) for vertical node-groups.
- Now, a shortest path between any two cells can be decomposed into two shortest paths along TV and TH: the two corresponding integers are called the vertical and horizontal contribution, respectively.
- Let us limit ourselves to the horizontal contributions. The sum of all horizontal contributions can be computed as the sum of
over all possible distinct pairs of distinct nodes
and
in TV: here,
and
are their weight (number of cells) and
is their distance in TV.
- The latter summation can be computed in linear time in the number of edges of TV, by observing that it is equivalent to the sum of
over all edges
of TV, where
and
are the sum of the weights of the two components of the tree obtained after removing the edge
.
Comments