码迷,mamicode.com
首页 > 其他好文 > 详细

What Are You Talking About HDU1075

时间:2019-01-31 23:43:59      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:color   name   字符   ace   nbsp   hdu1075   gif   amp   spl   

一开始我也想用map  但是处理不好其他字符。。

看了题解   多多学习! 很巧妙  就是粗暴的一个字符一个字符的来 分为小写字母和非小写字母两个部分  一但单词结束的时候就开始判断。

技术分享图片
#include<bits/stdc++.h>
using namespace std;

int main()
{
    string a,b;
    map<string ,string >ma;
    cin>>a;
    while(cin>>a&&a!="END")
    {
        cin>>b;ma[b]=a;

    }
    cin>>a;
    char s[3500];getchar();
    while(gets(s))
    {
        if(!strcmp(s,"END"))break;

        int n=strlen(s);
        a="";
        for(int i=0;i<n;i++)
        {
         if(islower(s[i]))a+=s[i];
         else
         {
             if(ma.find(a)!=ma.end())
                cout<<ma[a];

             else
                 cout<<a;

             cout<<s[i];
             a="";


         }


        }
        cout<<endl;


    }




}
View Code

 

What Are You Talking About HDU1075

标签:color   name   字符   ace   nbsp   hdu1075   gif   amp   spl   

原文地址:https://www.cnblogs.com/bxd123/p/10344411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!