poj_1002

参考资料:http://bbs.csdn.net/topics/390656680 getline

//
//  main.cpp
//  poj_test2
//
//  Created by 超好吃的混糖饼 on 16/4/4.
//  Copyright © 2016年 超好吃的混糖饼. All rights reserved.
//

#include <iostream>
#include "string"
#include <typeinfo>
#include <map>

using namespace std;

int fun(char a){
    switch(a)
    {
            case 'A':
            case 'B':
            case 'C': return '2';
            case 'D':
            case 'E':
            case 'F': return '3';
            case 'G':
            case 'H':
            case 'I': return '4';
            case 'J':
            case 'K':
            case 'L': return '5';
            case 'M':
            case 'N':
            case 'O': return '6';
            case 'P':
            case 'R':
            case 'S': return '7';
            case 'T':
            case 'U':
            case 'V': return '8';
            case 'W':
            case 'X':  
            case 'Y': return '9';
        default: return a;
    }
}

int main(){
    int n, i, j;
    string str;
    string ans = "";
    map<string, int> myMap;
    map<string, int>::iterator start, end;
    bool flag = true;

    cin>>n;
    getchar();
    for(i = 0; i < n; i++){
        getline(cin, str);
        for(j = 0; j < strlen(str.c_str()); j++){
            if (  (str[j] >= 'A' &&str[j] <= 'Z')  ||  (str[j] >= '0' && str[j] <= '9')  ) {
                ans += fun(str[j]);
            }
        }
        myMap[ans] += 1;
        ans = "";
    }
    for(start = myMap.begin(), end = myMap.end(); start != end; start++){
        if (start->second != 1) {
            flag = false;
            for (i = 0; i < 7; i++) {
                cout<<start->first[i];
                if (i==2) {
                    cout<<'-';
                }
            }
            cout<<" "<<start->second<<endl;
        }
    }
    if (flag) {
        printf("No duplicates.");
    }
    return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值