A10618 | Food on the Plane
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A new airplane SuperPuperJet has an infinite number of rows, numbered with positive integers starting with $1$ from cockpit to tail. There are six seats in each row, denoted with letters from 'a' to 'f'. Seats 'a', 'b' and 'c' are located to the left of an aisle (if one looks in the direction of the cockpit), while seats 'd', 'e' and 'f' are located to the right. Seats 'a' and 'f' are located near the windows, while seats 'c' and 'd' are located near the aisle.
It's lunch time and two flight attendants have just started to serve food. They move from the first rows to the tail, always maintaining a distance of two rows from each other because of the food trolley. Thus, at the beginning the first attendant serves row $1$ while the second attendant serves row $3$ . When both rows are done they move one row forward: the first attendant serves row $2$ while the second attendant serves row $4$ . Then they move three rows forward and the first attendant serves row $5$ while the second attendant serves row $7$ . Then they move one row forward again and so on.
Flight attendants work with the same speed: it takes exactly $1$ second to serve one passenger and $1$ second to move one row forward. Each attendant first serves the passengers on the seats to the right of the aisle and then serves passengers on the seats to the left of the aisle (if one looks in the direction of the cockpit). Moreover, they always serve passengers in order from the window to the aisle. Thus, the first passenger to receive food in each row is located in seat 'f', and the last one — in seat 'c'. Assume that all seats are occupied.
Vasya has seat $s$ in row $n$ and wants to know how many seconds will pass before he gets his lunch.
It's lunch time and two flight attendants have just started to serve food. They move from the first rows to the tail, always maintaining a distance of two rows from each other because of the food trolley. Thus, at the beginning the first attendant serves row $1$ while the second attendant serves row $3$ . When both rows are done they move one row forward: the first attendant serves row $2$ while the second attendant serves row $4$ . Then they move three rows forward and the first attendant serves row $5$ while the second attendant serves row $7$ . Then they move one row forward again and so on.
Flight attendants work with the same speed: it takes exactly $1$ second to serve one passenger and $1$ second to move one row forward. Each attendant first serves the passengers on the seats to the right of the aisle and then serves passengers on the seats to the left of the aisle (if one looks in the direction of the cockpit). Moreover, they always serve passengers in order from the window to the aisle. Thus, the first passenger to receive food in each row is located in seat 'f', and the last one — in seat 'c'. Assume that all seats are occupied.
Vasya has seat $s$ in row $n$ and wants to know how many seconds will pass before he gets his lunch.
输入格式
The only line of input contains a description of Vasya's seat in the format $ns$ , where $n$ ( $1<=n<=10^{18}$ ) is the index of the row and $s$ is the seat in this row, denoted as letter from 'a' to 'f'. The index of the row and the seat are not separated by a space.
输出格式
Print one integer — the number of seconds Vasya has to wait until he gets his lunch.
输入输出样例
输入 #1
1f
输出 #1
1
输入 #2
2d
输出 #2
10
输入 #3
4a
输出 #3
11
输入 #4
5e
输出 #4
18
In the first sample, the first flight attendant serves Vasya first, so Vasya gets his lunch after $1$ second.
In the second sample, the flight attendants will spend $6$ seconds to serve everyone in the rows $1$ and $3$ , then they will move one row forward in $1$ second. As they first serve seats located to the right of the aisle in order from window to aisle, Vasya has to wait $3$ more seconds. The total is $6+1+3=10$ .
In the second sample, the flight attendants will spend $6$ seconds to serve everyone in the rows $1$ and $3$ , then they will move one row forward in $1$ second. As they first serve seats located to the right of the aisle in order from window to aisle, Vasya has to wait $3$ more seconds. The total is $6+1+3=10$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted