dyatkovskiy's blog

By dyatkovskiy, history, 4 years ago, translation, In English

Here are some additional notes for 1238E's tutorial, which is kindly made by awoo и Roms. I got stuck there for a while with final expression.

( I even wrote solution with traces, haha (see after cut) )

First, let's think about base expression for total moves amount. And then in top-down way try to come to solution.

Moving rightward, for each symbol $$$s$$$, with keyboard position $$$x$$$ we will accumulate all moves between that symbol and all symbols at left. Obviously this is how we finally count all the moves. So here is a base expression:

$$$cnt = \sum_{x=1}^{n} \sum_{y=1}^{x-1} cnt_{xy} (x - y)$$$

Where $$$x$$$ и $$$y$$$ are symbol coordinates on keyboard. And $$$cnt_{xy}$$$ is amount of moves between those symbols, namely $$$s_x$$$ и $$$s_y$$$ .

(well, names are a bit different, but it allows to use shorter expressions)

So, how to come to that nice expression which we can see (but perhaps can't parse) at the end of awoo's tutorial for 1238E?

We've got to play with symbols and sums a little bit!

At first, expand $$$x-y$$$:

$$$cnt = \sum_{x=1}^{n} \sum_{y=1}^{x-1} cnt_{xy} x - \sum_{x=1}^{n} \sum_{y=1}^{x-1} cnt_{xy} y$$$

The game would over if we wouldn't know the context. But we do! At least following things:

  • $$$cnt_{xy}=cnt_{yx}$$$
  • Names "x" и "y" are merely local variables and fixed only within respective "$$$\sum$$$".
  • As long as base expression consists of addition and substration operations we are in right to swap "$$$\sum$$$" symbols. But watch signs and local var names (watch or lay an egg!).

So, take a look at the right side of expanded base expression:

$$$\sum_{x=1}^{n} \sum_{y=1}^{x-1} cnt_{xy} y$$$

We can rewrite it as follows:

$$$\sum_{y=1}^{n} \sum_{x=1}^{y-1} cnt_{xy} x$$$

(see? we just swapped the var names).

And now, let's think a bit more about right and left parts of that expanded base expression:

This:

$$$\sum_{x=1}^{n} \sum_{y=1}^{x-1} cnt_{xy} x$$$

instead enumerates all possible $$$x$$$ values in combination with all possible $$$y$$$ values which are at the left side from the $$$x$$$.

And this:

$$$\sum_{y=1}^{n} \sum_{x=1}^{y-1} cnt_{xy} x$$$

instead enumerates all possible $$$x$$$ values in combination with all possible $$$y$$$ values which are at the (!) right side from $$$x$$$.

Savvy?

Now regroup expression components. Remove old sum operators, and introduce new ones instead:

$$$cnt = \sum_x ( \sum_{y \in mask} cnt_{xy} x - \sum_{y \notin mask} cnt_{xy} x ) $$$

Suddenly, everything begins to make sence! For each $$$x$$$ we got that very expression (nice expression) from legacy tutorial!

$$$cnt_x = \sum_{y \in mask} cnt_{xy} x - \sum_{y \notin mask} cnt_{xy} x $$$

(well, in original article guys use $$$pos_x$$$ instead of $$$x$$$, as for $$$cnt_{xy}$$$ it means the same when you replace keyboard indices with respective alphabetical symbol values).

My solution
  • Vote: I like it
  • +15
  • Vote: I do not like it