487-3279

题目的目的是找重复的电话号码,并输出重复的,没有重复的 输出  No duplicates.; 

数组开到50以上啊

电话号码需要转换

我用了map

487-3279

Time Limit: 2000ms   Memory limit: 65536K  有疑问?点这里^_^

题目描述

Businesses like to have memorable telephone numbers. One way to make a telephone number memorable is to have it spell a memorable word or phrase. For example, you can call the University of Waterloo by dialing the memorable TUT-GLOP. Sometimes only part of the number is used to spell a word. When you get back to your hotel tonight you can order a pizza from Gino's by dialing 310-GINO. Another way to make a telephone number memorable is to group the digits in a memorable way. You could order your pizza from Pizza Hut by calling their ``three tens'' number 3-10-10-10.

The standard form of a telephone number is seven decimal digits with a hyphen between the third and fourth digits (e.g. 888-1200). The keypad of a phone supplies the mapping of letters to numbers, as follows:

A, B, and C map to 2
D, E, and F map to 3
G, H, and I map to 4
J, K, and L map to 5
M, N, and O map to 6
P, R, and S map to 7
T, U, and V map to 8
W, X, and Y map to 9

There is no mapping for Q or Z. Hyphens are not dialed, and can be added and removed as necessary. The standard form of TUT-GLOP is 888-4567, the standard form of 310-GINO is 310-4466, and the standard form of 3-10-10-10 is 310-1010.

Two telephone numbers are equivalent if they have the same standard form. (They dial the same number.)

Your company is compiling a directory of telephone numbers from local businesses. As part of the quality control process you want to check that no two (or more) businesses in the directory have the same telephone number.

输入

The input will consist of one case. The first line of the input specifies the number of telephone numbers in the directory (up to 100,000) as a positive integer alone on the line. The remaining lines list the telephone numbers in the directory, with each number alone on a line. Each telephone number consists of a string composed of decimal digits, uppercase letters (excluding Q and Z) and hyphens. Exactly seven of the characters in the string will be digits or letters.

输出

Generate a line of output for each telephone number that appears more than once in any form. The line should give the telephone number in standard form, followed by a space, followed by the number of times the telephone number appears in the directory. Arrange the output lines by telephone number in ascending lexicographical order. If there are no duplicates in the input print the line:

No duplicates.

示例输入

12
4873279
ITS-EASY
888-4567
3-10-10-10
888-GLOP
TUT-GLOP
967-11-11
310-GINO
F101010
888-1200
-4-8-7-3-2-7-9-
487-3279

示例输出

310-1010 2
487-3279 4
888-4567 3

 

 

 1 #include<iostream>
 2 #include<cstring>
 3 #include<cstdio>
 4 #include<map>
 5 using namespace std;
 6 int main()
 7 {
 8     map<string,int>mapp;
 9     map<string,int>::iterator iter;
10     char s[55],p[55];
11     int i,j,len,n,h[27]= {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};//方便对应的转化成数字
12     cin>>n;
13     while(n--)
14     {
15         scanf("%s",s);
16         getchar();
17         len=strlen(s);
18         j=0;
19         for(i=0; i<len; i++)
20         {
21             if('0'<=s[i]&&s[i]<='9') p[j++]=s[i];
22             else if('A'<=s[i]&&s[i]<='Z')
23                 p[j++]=h[s[i]-'A']+'0';
24             if(j==3)
25                 p[j++]='-';
26         }
27         p[8]='\0';
28         iter = mapp.find(p);//查找
29         if(iter!=mapp.end())
30             iter->second+=1;
31         else
32             mapp.insert(pair<string,int>(p,1));//插入
33     }
34     int t=1;
35     for(iter=mapp.begin(); iter!=mapp.end(); ++iter)
36     {
37         if(iter->second>1)
38         {
39             printf("%s %d\n",iter->first.c_str(),iter->second);//输出
40             t=0;
41         }
42     }
43     if(t)
44         printf("No duplicates.\n");
45     return 0;
46 }
View Code

 

posted @ 2013-08-07 21:48  孔凡凯凯  阅读(243)  评论(0编辑  收藏  举报