码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-03-09 12:55:23      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

2023. Donald is a postman

Time limit: 1.0 second
Memory limit: 64 MB
技术分享
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?
技术分享

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;
}



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

标签:

原文地址:http://blog.csdn.net/u013446688/article/details/44152617

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!