博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForces 731A Night at the Museum
阅读量:4547 次
发布时间:2019-06-08

本文共 2142 字,大约阅读时间需要 7 分钟。

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 receivedembosser 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

#include 
#include
#include
#include
#include
#include
using namespace std;char a[105];int main(){ char now; scanf("%s",a); now='a'; int ans=0; for(int i=0;a[i];i++) { ans+=min(abs(a[i]-now),min(abs(a[i]+26-now),abs(now+26-a[i]))); now=a[i]; } printf("%d\n",ans); return 0;}

转载于:https://www.cnblogs.com/dacc123/p/8228576.html

你可能感兴趣的文章
powerDesigner
查看>>
WebMatrix (1)
查看>>
VTP
查看>>
cdoj 841 休生伤杜景死惊开 逆序数/树状数组
查看>>
Codeforces Round #358 (Div. 2) B. Alyona and Mex 水题
查看>>
信用卡(完)
查看>>
20162303 解读同伴的收获&解决同伴的问题 周三补交
查看>>
javascript创建对象
查看>>
CS-- WebService、 windowsService
查看>>
binary hacks读数笔记(ld 链接讲解 一)
查看>>
Http权威指南(二)---读书笔记
查看>>
vue组件之间通信传值
查看>>
HttpSession, ActionContext, ServletActionContext 区别
查看>>
鸡啄米vc++2010系列16(文件对话框)
查看>>
数据结构(2)
查看>>
替换字符串
查看>>
JavaSwing仿QQ登录界面,注释完善,适合新手学习
查看>>
ch1
查看>>
console.dir(someObject);
查看>>
笔记31 | 归纳总结Android的点击事件
查看>>