[1441] Babelfish noj(宁波)

http://ac.nbutoj.com/Problem/view.xhtml?id=1441

  • [1441] Babelfish

  • 时间限制: 1000 ms 内存限制: 65535 K
  • 问题描述
  • You have just moved from Waterloo to a big city. The people here speak an incomprehensible dialect of a foreign language. Fortunately, you have a dictionary to help you understand them.
  • 输入
  • Input consists of up to 100,000 dictionary entries, followed by a blank line, followed by a message of up to 100,000 words. Each dictionary entry is a line containing an English word, followed by a space and a foreign language word. No foreign word appears more than once in the dictionary. The message is a sequence of words in the foreign language, one word on each line. Each word in the input is a sequence of at most 10 lowercase letters.
  • 输出
  • Output is the message translated to English, one word per line. Foreign words not in the dictionary should be translated as "eh".
  • 样例输入
  • dog ogday
    cat atcay
    pig igpay
    froot ootfray
    loops oopslay
    
    atcay
    ittenkay
    oopslay
    
  • 样例输出
  • cat
    eh
    loops
  •  1 #include<math.h>
     2 #include<algorithm>
     3 #include<string.h>
     4 #include<string>
     5 #include<ctime>
     6 #include<queue>
     7 #include<list>
     8 #include<map>
     9 #include<set>
    10 #include<vector>
    11 #include<stack>
    12 #include<iostream>
    13 #define INF 999999999
    14 #define N 50010
    15 using namespace std;
    16 
    17 int cnt=1;
    18 typedef struct node
    19 {
    20     node * next[26];
    21     int num;
    22     node()
    23     {
    24         num=0;
    25         memset(next,NULL,sizeof(next));
    26     }
    27 }Nod;
    28 void insert_tree(Nod * head,char *str)
    29 {
    30     Nod *h=head;
    31     int len=strlen(str);
    32     int i;
    33     for(i=0;i<len;i++)
    34     {
    35         int id=str[i]-'a';
    36         if(h->next[id]==NULL)
    37             h->next[id]=new node;
    38         h=h->next[id];
    39     }
    40     h->num=cnt++;   //这个标记结尾,并标记是第几个,作为hash
    41 }
    42 int find_tree(Nod *head,char *str)
    43 {
    44     int i;
    45     Nod *h=head;
    46     int len=strlen(str);
    47     for(i=0;i<len;i++)
    48     {
    49         int id=str[i]-'a';
    50         if(h->next[id]==NULL)
    51             return 0;     //没找到则返回0
    52         h=h->next[id];
    53     }
    54     if(h!=NULL)
    55         return h->num;  //当h不为空,返回hash
    56     return 0;
    57 }
    58 void freedom(Nod *h)  //这是对指针的释放,这个题不知道怎么回事,释放会超时,估计是因为递归释放耗时太多,不过题目只有一组测试,可以不释放
    59 {
    60     int i;
    61     for(i=0;i<26;i++)
    62     {
    63         if(h->next[i]!=NULL)
    64             freedom(h->next[i]);
    65     }
    66     delete h;
    67 }
    68 
    69 char tstr[100010][20]={"eh",}; //初始化hash字符数组
    70 
    71 int main()
    72 {
    73     char str[20];
    74     int i=1,n;
    75     cnt=1;
    76     Nod *head;
    77     head=new node;
    78     char ch;
    79     while(~scanf("%s",tstr[i]))
    80     {
    81         ch=getchar();
    82         if(ch==10)    //输入这里我用了getchar来查看字符串后面的字符是不是回车
    83             break;
    84         scanf("%s",str);
    85         insert_tree(head,str);
    86         i++;
    87     }
    88     int pos=find_tree(head,tstr[i]);
    89     puts(tstr[pos]);
    90     while(~scanf("%s",str))
    91     {
    92         pos=find_tree(head,str);
    93         puts(tstr[pos]);
    94     }
    95     //freedom(head);
    96     return 0;
    97 }

     

转载于:https://www.cnblogs.com/crazyapple/archive/2013/04/26/3045740.html

城市运行管理的重要性与挑战 城市运行体系是以人为本的服务和经济发展体系,涉及决策、管理和执行三个层次。当前城市运行管理面临城市化快速发展、资源环境制约和社会矛盾突出等挑战。信息技术的发展为城市运行管理提供了重要手段,城市信息化经历了数字化、智能化到智慧化的发展过程。我国城市信息化虽取得进展,但仍处于初级阶段,存在缺乏整体规划、资源浪费和协作效率不高等问题。 智慧城市综合运行管理解决方案 智慧城市运行管理中心(SCOC)是支撑城市运行综合管理的神经中枢,旨在掌控城市运行综合体征,促进服务型政府转型。该中心通过全面整合运行资源,服务城市未来发展,提升城市运行水平和突发事件处置效率。中心纵向提升综合职能,横向贯通专业分工,包括综合管理平台、专业管理平台和业务操作平台,覆盖城市交通、公共安全、生态环境等多个领域。 智慧城市综合运行管理平台的结构与功能 智慧城市综合运行管理平台包括决策支持系统、处置系统、基础设施和监测系统。平台通过综合展现系统、综合应急指挥系统、综合运行业务联动系统等,实现城市运行的综合监测和管理。物联网数据采集系统利用网络通讯技术,实现城市物联网设备的高效运行。平台还包含云计算业务支撑系统、城市基础数据库、视频图像云平台等,以支持城市运行管理的各个方面。 智慧城市综合运行管理解决方案的优势 该解决方案具有三个核心优势:首先,它提供了完整的智慧城市视角,不仅仅是指挥中心或数据中心,而是智慧城市的实际载体。其次,它建立了完整的城市运行联动体系,打通业务部门壁垒,形成有机融合的业务联动平台,提升业务处理效率和服务水平。最后,方案凝聚了多年智慧城市建设咨询经验,为城市运行管理提供了成熟的解决方案。 项目实施建议 智慧城市运行管理中心的建设思路和项目实施建议是方案的重要组成部分,旨在指导城市如何有效实施智慧城市运行管理解决方案,以应对城市运行管理的挑战,提升城市管理的智能化和效率。通过这些建议,城市能够更好地规划和实施智慧城市项目,实现可持续发展。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值