URAL 2023. Donald is a postman (预处理)

33 篇文章 0 订阅

2023. Donald is a postman

Time limit: 1.0 second
Memory limit: 64 MB
Problem illustration
Donald Duck works as a postman for the Walt Disney Studios. He delivers children’s letters from all over the world to his friends, which are cartoon characters. The Studios has three cases for the letters, with nine sections in each case. Every section has the name of the receiver on it. All cases stand in a row as it is shown at the picture below.
Donald Duck have brought  n letters today. Initially, he stands near the leftmost case. He has to make one step to go to the neighboring case or to the previous one. How many steps will he make until he puts all the letters into the respective sections, if he does this in the order they are in his bag?
Problem illustration

Input

The first line contains an integer  n that is the amount of letters in Donald’s bag (1 ≤  n ≤ 1 000). The following  n lines contain receivers of the letters in the order they are in the bag.

Output

Output the number of steps Donald should make to put all the letters into the cases.

Sample

input output
4
Aurora
Tiana
Ariel
Mulan
5




解析:预处理一下各个名字在哪个case里面,然后再按照输入顺序移动即可。



AC代码:

#include <cstdio>
#include <string>
#include <iostream>
using namespace std;

int a[30];

int main(){
    #ifdef sxk
        freopen("in.txt", "r", stdin);
    #endif //sxk

    for(int i=0; i<26; i++){
        if(i == 'A' - 'A' || i == 'P' - 'A' || i == 'O' - 'A' || i == 'R' - 'A')
            a[i] = 1;
        else if(i == 'B' - 'A' || i == 'M' - 'A' || i == 'S' - 'A')
            a[i] = 2;
        else if(i == 'D' - 'A' || i == 'G' - 'A' || i == 'J' - 'A' || i == 'K' - 'A' || i == 'T' - 'A' || i == 'W' - 'A')
            a[i] = 3;
        else a[i] = 0;
    }
    int n;
    string s;
    while(scanf("%d", &n)==1){
        int ans = 0, now = 1;
        for(int i=0; i<n ; i++){
            cin>>s;
            ans += a[ s[0] - 'A' ] > now ? a[ s[0] - 'A' ] - now : now - a[ s[0] - 'A' ];
            now = a[ s[0] - 'A' ];
        }
        printf("%d\n", ans);
    }
    return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值