Ant Typing

아직 제출이 없습니다시간 제한1초메모리 제한512 MB

문제

Consider a configurable keyboard where keys can be moved about. An ant is walking on the top row of this keyboard and needs to type a numeric string. The ant starts on the leftmost key of the top row, which contains 99 keys, some permutation of the digits from 11 to 99. On a given second, the ant can perform one of three operations:

  1. Stay on that key. The digit corresponding to that key will be entered.
  2. Move one key to the left. This can only happen if the ant is not on the leftmost key.
  3. Move one key to the right. This can only happen if the ant is not on the rightmost key.

Compute the minimum number of seconds needed for the ant to type out the given numeric string, over all possible numeric key permutations.

입력

The single line of input contains a single string ss (1s1051 \le |s| \le 10^5) consisting only of numeric digit characters from 11 to 99. This is the numeric string that the ant needs to type.

출력

Output a single integer, which is the minimum number of seconds needed for the ant to type out the given numeric string, over all possible numeric key permutations.