首页 > 移动平台 > 详细

题目1079:手机键盘(对应关系)

时间:2017-05-03 18:44:52      阅读:235      评论:0      收藏:0      [点我收藏+]

题目链接:http://ac.jobdu.com/problem.php?pid=1079

详解链接:https://github.com/zpfbuaa/JobduInCPlusPlus

参考代码:

//
//  1079 手机键盘.cpp
//  Jobdu
//
//  Created by PengFei_Zheng on 03/05/2017.
//  Copyright © 2017 PengFei_Zheng. All rights reserved.
//
 
#include <stdio.h>
#include <iostream>
#include <algorithm>
#include <string.h>
#include <cstring>
#include <cmath>
#include <climits>
#define MAX_SIZE 110
 
using namespace std;
 
char str[MAX_SIZE];
int pos[26]={2,2,2,3,3,3,4,4,4,5,5,5,6,6,6,7,7,7,7,8,8,8,9,9,9,9};
int kase[26]={1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,4,1,2,3,1,2,3,4};
 
int main(){
    while(scanf("%s",str)!=EOF){
        int len = (int)strlen(str);
        int sum = kase[str[0]-a];
        for(int i = 1 ; i < len ; i++){
            if(pos[str[i]-a]!=pos[str[i-1]-a]){
                sum+=(kase[str[i]-a]);
            }
            else {
                sum+=2+kase[str[i]-a];
            }
        }
        printf("%d\n",sum);
    }
    return 0;
}
/**************************************************************
    Problem: 1079
    User: zpfbuaa
    Language: C++
    Result: Accepted
    Time:10 ms
    Memory:1520 kb
****************************************************************/

 

题目1079:手机键盘(对应关系)

原文:http://www.cnblogs.com/zpfbuaa/p/6803262.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!