| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 968 人关注过本帖
标题:高手指点啊,我的代码又超时了 - -!
只看楼主 加入收藏
醉生梦死
Rank: 1
等 级:新手上路
帖 子:77
专家分:0
注 册:2007-8-21
收藏
 问题点数:0 回复次数:4 
高手指点啊,我的代码又超时了 - -!
题目地址:
[url]http://acm.jlu.[/url]
题目:
 time limint : 10s.........(给了这么长时间,我还是超时了,跑了11s,惭愧啊)

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.

Input

The input will consist of several cases. The first line of each case 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.
Output

For each test case, 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.
Sample Input

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
Sample Output

310-1010 2
487-3279 4
888-4567 3
我的代码:
#include <iostream>
#include <vector>
using namespace std;

class node
{
    friend int main();
private:
    char text[12];
    int times;
};
int main()
{
    while(1)
    {
    int n;
    int k=0;
    cin>>n;
    char c[n][8];
    while (k<n)
    {
        string a;
        cin>>a;
        remove_copy(a.begin(),a.end(),c[k],'-');
        c[k][7]='\0';
        for (int i=0;i<7;i++)
        {
            if (c[k][i] >= 'A' && c[k][i] <= 'O')
                c[k][i] = char('2' + (c[k][i] -'A')/3);
            if (c[k][i]=='P'||c[k][i]=='R'||c[k][i]=='S')
                c[k][i]='7';
            if (c[k][i] >= 'T' && c[k][i] <= 'Y')
                c[k][i] = char('8' + (c[k][i] -'T')/3);
        }
        k++;
    }
    char cpare[n][8];
    int ct=0;
    vector<int> count(n,0);
    vector<int> tag(n,0);
    int have = 0;
    for (int i=0;i<n;i++,ct++)
    {
        if (tag[i]!=1)
        {
            strcpy(cpare[ct],c[i]);
            for (int j=0;j<n;j++)
                if (tag[j]!=1)
                    if (strcmp(cpare[ct],c[j])==0)
                    {
                        tag[j]=1;
                        count[ct]++;
                        if (count[ct]==2)
                            have = 1;
                    }
        }
        else continue;
    }
    if (have == 0)
        cout << "No duplicates." << endl;
    node nd[n];
    int ct1=0;
    vector<int> count1(n,0);
    for (int i=0;i<ct;i++)
    {
        if (count[i]>1)
        {
            strcpy(nd[ct1].text,cpare[i]);
            nd[ct1].times=count[i];
            ct1++;
        }
        else continue;
    }
    
    
    node max;
    for (int i=0;i<ct1-1;i++)
        for(int j=0;j<ct1-i-1;j++)
            if (strcmp(nd[j].text,nd[j+1].text)>0)
            {
                max = nd[j];
                nd[j] = nd[j+1];
                nd[j+1] = max;
            }
    
    for (int i =0;i < ct1;i ++)
    {
        int j = 0;
        for (;j < 3;j ++)
            cout << nd[i].text[j];
        cout << '-';
        for (j = 3;j <= 6;j ++)
            cout << nd[i].text[j];
        cout << ' ' << nd[i].times << endl;
    }
    }
}
搜索更多相关主题的帖子: memorable 超时 spell telephone 
2007-11-26 16:17
beyond0702
Rank: 1
来 自: 桂 林
等 级:新手上路
帖 子:219
专家分:0
注 册:2007-11-17
收藏
得分:0 
晕, 就10S  ,题目还没看完呢
2007-11-26 16:52
aipb2007
Rank: 8Rank: 8
来 自:CQU
等 级:贵宾
威 望:40
帖 子:2879
专家分:7
注 册:2007-3-18
收藏
得分:0 
PKU 1002
怎么给10s啊?自己看看吧,以前写的。最好不用stl,太耗时了!

程序代码:
#include <stdio.h>
#include <string.h>
#define MAX 100
typedef struct node{

 char n[100];

 int c;

 node *l,*r;

 node(const char *s) : c(1),l(0),r(0){strcpy(n,s);}
}*p_node;

void insert(p_node &h,const char *s){

 int k;

 if (!h)
  h = new node(s);

 else if ((k=strcmp(s,h->n)) == 0)
  ++h->c;

 else if (k > 0)
  insert(h->r,s);

 else
  insert(h->l,s);
}
void clear(p_node h){

 if (h){
  clear(h->l);
  clear(h->r);
  delete h;

 }
}

 
int print(p_node h){

 int cnt = 0;

 if (h){
  cnt += print(h->l);
  if (h->c > 1){
   printf("%s %d\n",h->n,h->c);
   ++cnt;
  }
  cnt += print(h->r);

 }

 return cnt;
} 
char convert(char c){

 switch(c){
  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';

 }
} 
   
void get_num(char *s1,char *s2){

 int i=0,j=0;

 for (;s1[i] != '\0';++i){
  if (s1[i] != '-'){
   if (s1[i] >= 'A' && s1[i] <= 'Z')
    s2[j++] = convert(s1[i]);
   else
    s2[j++] = s1[i];
  }
  if (j == 3)
   s2[j++] = '-';

 }

 s2[j] = '\0';
}
    
   
char s1[MAX],s2[MAX];
p_node h = 0; 
int main(){

 int n;

 while (scanf("%d",&n) != EOF){
  for (int i = 0;i < n;++i){
   scanf("%s",s1);
   get_num(s1,s2);
   insert(h,s2);
  }
  if (!print(h))
   printf("No duplicates.");
  clear(h);
  h = 0;

 }

 return 0;
}


[[italic] 本帖最后由 aipb2007 于 2007-11-26 22:49 编辑 [/italic]]

Fight  to win  or  die...
2007-11-26 22:45
醉生梦死
Rank: 1
等 级:新手上路
帖 子:77
专家分:0
注 册:2007-8-21
收藏
得分:0 
joj上给的10s,无限老大,能加一下qq吗?我刚开始做acm,对于程序的执行效率这方面理解的很不好.....想多请教一下.
QQ:522050689

2007-11-27 16:41
leeco
Rank: 4
等 级:贵宾
威 望:10
帖 子:1029
专家分:177
注 册:2007-5-10
收藏
得分:0 
2949164    leeco    1002    Accepted    2460K    452MS    G++    1042B    2007-11-27 16:54:24
程序代码:
#include <iostream>

#include <map>

using namespace std;



char buf[1000];

int table[]={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 trans(char* str)

{

    int res=0;

    for(;*str;str++){

        if(isdigit(*str)){

            res=res*10+*str-'0';

        }    

        else if(isupper(*str)){

            res=res*10+table[*str-'A'];

        }

    }

    return res;

}    



int main()

{

    int n;

    while(scanf("%d",&n)!=EOF){

        map<int,int> M;

        map<int,int>::iterator p;

        for(int i=0;i<n;i++){

            scanf("%s",buf);

            M[trans(buf)]++;

        }

        int flag=0;

        for(p=M.begin();p!=M.end();p++){

            if(p->second>1){

                flag=1;

                printf("%.3d-%.4d %d\n",p->first/10000,p->first%10000,p->second);

            }    

        }

        if(!flag){

            printf("No duplicates.\n");

        }    

    }    

}    
2007-11-27 16:59
快速回复:高手指点啊,我的代码又超时了 - -!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015807 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved