Leave Your Name

No attempts yetTime limit12sMemory limit128 MB

Problem

Kkung just set the high score on a favorite game! Only the name is left to enter, and the entry pad makes that a chore.

  • The only characters available are the 2626 uppercase letters A to Z. No digits, no spaces, no lowercase letters, nothing else.
  • UP and DOWN change the letter you are about to enter. That letter starts at A, DOWN from A gives Z, and UP from Z gives A.
  • LEFT and RIGHT move the cursor by one slot. Once the cursor sits at one end, it cannot move further in that direction.
  • FIRE inserts the letter you are about to enter at the cursor. Whatever stood to the right shifts one slot over, and the cursor lands right after the inserted letter.

Say the name is 'ALMA'. Kkung can enter it like this.

ActionPressesName so far (| = cursor)Letter to enter
FIRE1A|A
UP11A|L
FIRE1AL|L
UP1AL|M
FIRE1ALM|M
DOWN12ALM|A
FIRE1ALMA|A

That costs 2828 presses. Now look at this run instead.

ActionPressesName so far (| = cursor)Letter to enter
FIRE1A|A
FIRE1AA|A
LEFT1A|AA
UP11A|AL
FIRE1AL|AL
UP1AL|AM
FIRE1ALM|AM

That finishes the same name in 1717 presses. Given a name, how few button presses are enough to enter it? The letter to enter starts at A, and the cursor may sit anywhere once the name is complete.

Input

Each test case is one line holding a name made only of uppercase letters, with length between 11 and 1818. The last line of the input holds a single 0.

Output

For each test case, print the smallest number of button presses that enters the name, one per line.