time limit per test1 second

memory limit per test256 megabytes

inputstandard input

outputstandard output

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.

Input

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.

Output

Print one integer — the minimum number of rotations of the wheel, required to print the name given in the input.

Examples

input

zeus

output

18

input

map

output

35

input

ares

output

34

Note

To print the string from the first sample it would be optimal to perform the following sequence of rotations:

from ‘a’ to ‘z’ (1 rotation counterclockwise),

from ‘z’ to ‘e’ (5 clockwise rotations),

from ‘e’ to ‘u’ (10 rotations counterclockwise),

from ‘u’ to ‘s’ (2 counterclockwise rotations).

In total, 1 + 5 + 10 + 2 = 18 rotations are required.

【题解】



模拟题;

可以一个一个地加;

也可以一个一个地减;

看看到达目标哪个需要的操作数较小就累加上那个操作数就好;

#include <cstdio>
#include <algorithm>
#include <cstring> using namespace std; char now;
char s[200];
int step = 0; int add(char key,char goal)
{
int cnt = 0;
while (key != goal)
{
key++;
cnt++;
if (key > 'z')
key = 'a';
}
return cnt;
} int sub(char key, char goal)
{
int cnt = 0;
while (key != goal)
{
key--;
cnt++;
if (key < 'a')
key = 'z';
}
return cnt;
} int main()
{
//freopen("F:\\rush.txt", "r", stdin);
now = 'a';
scanf("%s", s);
int len = strlen(s);
for (int i = 0; i <= len - 1; i++)
if (s[i] == now)
continue;
else
{
char temp = now;
int way1 = add(temp,s[i]);
temp = now;
int way2 = sub(temp, s[i]);
step += min(way1, way2);
now = s[i];
}
printf("%d\n", step);
return 0;
}

最新文章

  1. 【集合框架】JDK1.8源码分析之IdentityHashMap(四)
  2. PKCS#1规范阅读笔记2--------公私钥ASN.1结构
  3. 14-前端开发之CSS
  4. js的变量使用&lt;bean&gt;&lt;list:write&gt;赋值时需加&#39; &#39;
  5. hibernate spring annotation setup
  6. 如果你也和我一样,OSX反应慢,不妨试试这个
  7. MVC项目实践,在三层架构下实现SportsStore-02,DbSession层、BLL层
  8. [PCL]4 PCL中图像匹配的几个类图
  9. JQuery Pagenation 知识点整理——(function($){...})应用(20150517)
  10. Fitnesse-20140630与RestFixture-3.1编译与运行步骤
  11. 贪心算法&mdash;&mdash;将正整数变为1
  12. StringBuffer跟StringBuilder以及HashMap跟HashTable
  13. MFC中控件的TAB顺序 ----转载
  14. [Angular Tutorial] 12 -Event Handlers
  15. 2018年最完整5大网页设计图标解决方案:Font Awesome奥森图Unicode、CSS 和、Font以及国产zfont图标集
  16. python中的函数(定义、多个返回值、默认参数、参数组)
  17. 为什么 web 开发人员需要迁移到. NET Core, 并使用 ASP.NET Core MVC 构建 web 和 webservice/API
  18. Asp.Net SignalR Hub集线器
  19. jmeter 执行python脚本
  20. PowerDesigner导出pdm设计为Word文档

热门文章

  1. 常用到的Linux命令
  2. C语言深度剖析-----内存管理的艺术
  3. python链表的实现,有注释
  4. [Angular] Test Container component with async provider
  5. 【C++竞赛 C】yyy的数学公式
  6. [SCSS] Reuse Styles with the SCSS @mixin Directive
  7. iOS开发之Quartz2D 二:绘制直线,曲线,圆弧,矩形,椭圆,圆
  8. warning C4996: 'fopen': This function or variable may be unsafe.(_CRT_SECURE_NO_WARNINGS)
  9. 博客搬家啦! -----&gt; http://ronghaopger.github.io/
  10. 【25.33%】【codeforces 552D】Vanya and Triangles