A10588 | Night at the Museum
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition.
Embosser is a special devise that allows to "print" the text of a plastic tape. Text is printed sequentially, character by character. The device consists of a wheel with a lowercase English letters written in a circle, static pointer to the current letter and a button that print the chosen letter. At one move it's allowed to rotate the alphabetic wheel one step clockwise or counterclockwise. Initially, static pointer points to letter 'a'. Other letters are located as shown on the picture:
After Grigoriy add new item to the base he has to print its name on the plastic tape and attach it to the corresponding exhibit. It's not required to return the wheel to its initial position with pointer on the letter 'a'.
Our hero is afraid that some exhibits may become alive and start to attack him, so he wants to print the names as fast as possible. Help him, for the given string find the minimum number of rotations of the wheel required to print it.
Embosser is a special devise that allows to "print" the text of a plastic tape. Text is printed sequentially, character by character. The device consists of a wheel with a lowercase English letters written in a circle, static pointer to the current letter and a button that print the chosen letter. At one move it's allowed to rotate the alphabetic wheel one step clockwise or counterclockwise. Initially, static pointer points to letter 'a'. Other letters are located as shown on the picture:
After Grigoriy add new item to the base he has to print its name on the plastic tape and attach it to the corresponding exhibit. It's not required to return the wheel to its initial position with pointer on the letter 'a'.
Our hero is afraid that some exhibits may become alive and start to attack him, so he wants to print the names as fast as possible. Help him, for the given string find the minimum number of rotations of the wheel required to print it.
输入格式
The only line of input contains the name of some exhibit — the non-empty string consisting of no more than $100$ characters. It's guaranteed that the string consists of only lowercase English letters.
输出格式
Print one integer — the minimum number of rotations of the wheel, required to print the name given in the input.
输入输出样例
输入 #1
zeus
输出 #1
18
输入 #2
map
输出 #2
35
输入 #3
ares
输出 #3
34
To print the string from the first sample it would be optimal to perform the following sequence of rotations:
1. from 'a' to 'z' ( $1$ rotation counterclockwise),
2. from 'z' to 'e' ( $5$ clockwise rotations),
3. from 'e' to 'u' ( $10$ rotations counterclockwise),
4. from 'u' to 's' ( $2$ counterclockwise rotations).
In total, $1+5+10+2=18$ rotations are required.
1. from 'a' to 'z' ( $1$ rotation counterclockwise),
2. from 'z' to 'e' ( $5$ clockwise rotations),
3. from 'e' to 'u' ( $10$ rotations counterclockwise),
4. from 'u' to 's' ( $2$ counterclockwise rotations).
In total, $1+5+10+2=18$ rotations are required.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted