• HDU——1982Kaitou Kid


    Kaitou Kid - The Phantom Thief (1)

    Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 2694    Accepted Submission(s): 1182


    Problem Description
    Do you know Kaitou Kid? In the legend, Kaitou Kid is a master of disguise, and can take on the voice and form of anyone. He is not an evil person, but he is on the wrong side of the law. He's the very elusive phantom thief who never miss his prey although he always uses word puzzles to announce his targets before action.



    You are the leader of a museum. Recently, you get several priceless jewels and plan to hold an exhibition. But at the moment, you receive Kid's word puzzle... Fortunately, It seems Kid doesn’t want to trouble you, and his puzzle is very easy. Just a few minutes, You have found the way to solve the puzzle:

    (1) change 1 to 'A', 2 TO 'B',..,26 TO 'Z'
    (2) change '#' to a blank
    (3) ignore the '-' symbol, it just used to separate the numbers in the puzzle
     


     

    Input
    The first line of the input contains an integer C which means the number of test cases. Then C lines follow. Each line is a sentence of Kid’s word puzzle which is consisted of '0' ~ '9' , '-' and '#'. The length of each sentence is no longer than 10000.
     


     

    Output
    For each case, output the translated text.
     


     

    Sample Input
    4 9#23-9-12-12#19-20-5-1-12#1-20#12-5-1-19-20#15-14-5#10-5-23-5-12 1-14-4#12-5-1-22-5#20-8-5#13-21-19-5-21-13#9-14#20#13-9-14-21-20-5-19 1-6-20-5-18#20-8-5#15-16-5-14-9-14-7#15-6#20-8-5#5-24-8-9-2-9-20-9-15-14 7-15-15-4#12-21-3-11
     

    题目挺坑,多个#不能无视,多个-要视为1个-,WA+PE数次之后终于对了

    #include<iostream>
    #include<string>
    #include<algorithm>
    #include<sstream>
    using namespace std;
    int main(void)
    {
        int n,num,i,j;
        string s,ans;
        while (cin>>n)
        {
            getchar();
            while (n--)
            {            
                getline(cin,s);
                ans="";
    			for(i=0; i<s.size(); i++)
    			{
    				if(s[i]=='-')//第一种为-
    					continue;
    				else if(isdigit(s[i]))//第二种为数字
    				{
    					if(isdigit(s[i+1]))
    					{
    						ans=ans+char((s[i]-'0')*10+s[i+1]-'0'+64);
    						i++;//既然已经判断过了I+1那循环就要从下下次开始,下同
    					}	
    					else if(s[i+1]=='-')
    					{
    						ans=ans+char(s[i]-'0'+64);
    						i++;
    					}
    					else if(s[i+1]=='#')
    					{
    						ans=ans+char(s[i]-'0'+64);
    						ans=ans+" ";
    						i++;						
    					}
    					else 
    						ans=ans+char(s[i]-'0'+64);
    				}	
    				else if(s[i]=='#')//第三种为#
    				{
    					ans+=" ";
    				}
    			}
                cout<<ans<<endl;
            }        
        }
        return 0;
    }
  • 相关阅读:
    用jquery判断当前显示器的分辨率,加载不同CSS
    [置顶] Android SDK下载和更新失败的解决方法!!!
    [置顶] 最全的Android开发开发资料
    [置顶] Android入门教程导入现有Android工程
    [置顶] 用Android访问本地站点(localhost,10.0.2.2)
    [置顶] Android入门教程Android工程目录结构介绍
    [置顶] 解决Android解析图片的OOM问题
    [置顶] Android入门教程环境搭建
    [置顶] Android 中的拿来主义(编译,反编译,AXMLPrinter2,smali,baksmali)
    Windows 8 平板电脑体验及思考
  • 原文地址:https://www.cnblogs.com/Blackops/p/5356422.html
Copyright © 2020-2023  润新知