A. Night at the Museum
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard 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:

  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.

/*
一个字母盘初始位置在a,问你最少转动多少次,能将给定字的字符串转出来。(每次转动只能转动到相邻字母) 简单的模拟,每次转动只要讨论是正着还是反着转就行了
*/
#include<iostream>
#include<string.h>
#include<string>
#include<algorithm>
#include<stdio.h>
#include<vector>
#include<map>
#include<set>
using namespace std;
int main()
{
//freopen("C:\\Users\\acer\\Desktop\\in.txt","r",stdin);
char str[];
scanf("%s",&str);
int ans=;
ans+=min(str[]-'a','z'+-str[]);
//cout<<ans<<endl;
for(int i=;i<strlen(str);i++)
{
int s1=abs(str[i]-str[i-]);
int s2=min(str[i],str[i-]);
int s3=max(str[i],str[i-]);
ans+=min(s1,('z'-s3)+(s2-'a'+));
//cout<<abs(str[i]-str[i-1])<<" "<<('z'-str[i-1])+(str[i]-'a'+1)<<endl;
//cout<<min(abs(str[i]-str[i-1]),('z'-str[i-1])+(str[i]-'a'+1))<<endl;
}
printf("%d\n",ans);
return ;
}

最新文章

  1. .net WebApi开发
  2. Android高手速成--第二部分 工具库
  3. C++内存对齐的理解
  4. Etl之HiveSql调优(union all)
  5. Java 集合系列 14 hashCode
  6. JSON如何序列图片
  7. zoj-3626 Treasure Hunt I (树形dp)
  8. 双网卡route配置
  9. linux下进入root
  10. Git 安装配置手册
  11. 一起学Android之Layout
  12. 如何通过Git将写好的项目发布到github上
  13. 文件下载Controller,文件夹内容监听,文件上传,运行程序通过url实现文件下载
  14. 【VMware vSphere】VMware vSphere简单了解
  15. try or install Ubuntu on MeegoPad T01
  16. shell脚本-删除当天日期前3个月的数据表
  17. 各种CTF的WP
  18. Jmeter的接口测试简介
  19. 虚拟机安装Linux过程和踩坑
  20. quartz动态job工具类 serviceh注入问题

热门文章

  1. angular directive知识
  2. webpack2系列step1
  3. Codeforces Round #436 (Div. 2) E. Fire
  4. java 反射 类装载器
  5. 使用 TUN 设备实现一个简单的 UDP 代理隧道
  6. 7-21(排序) PAT排名汇总
  7. 第4章 同步控制 Synchronization ----critical section 互斥区 ,临界区
  8. 调用惯例Calling Convention (或者说:调用约定)
  9. ubuntu12.04添加程序启动器到Dash Home
  10. poj2891非互质同余方程