zoukankan      html  css  js  c++  java
  • 1084. Broken Keyboard (20)

    On a broken keyboard, some of the keys are worn out. So when you type some sentences, the characters corresponding to those keys will not appear on screen.

    Now given a string that you are supposed to type, and the string that you actually type out, please list those keys which are for sure worn out.

    Input Specification:

    Each input file contains one test case. For each case, the 1st line contains the original string, and the 2nd line contains the typed-out string. Each string contains no more than 80 characters which are either English letters [A-Z] (case insensitive), digital numbers [0-9], or "_" (representing the space). It is guaranteed that both strings are non-empty.

    Output Specification:

    For each test case, print in one line the keys that are worn out, in the order of being detected. The English letters must be capitalized. Each worn out key must be printed once only. It is guaranteed that there is at least one worn out key.

    Sample Input:

    7_This_is_a_test
    _hs_s_a_es
    

    Sample Output:

    7TI


    #include<iostream>
    #include<cstdio>
    #include<cstring>
    using namespace std;
    string s,d;
    void change(string ss){
    	int len=ss.size();
    	for(int i=0;i<len;i++){
    		if(ss[i]>='A'&&ss[i]<='Z'){
    			ss[i]=ss[i]-'A'+'a';
    		}
    	}
    }
    int main(){
    	char ch;
    	int digital[10];
    	int letters[26];
    	memset(digital,-1,sizeof(digital));
    	memset(letters,-1,sizeof(letters));
    	cin>>s;
    	cin>>d;
    	change(s);
    	change(d);
    	int len=s.size();
    	for(int i=0;i<len;i++){
    		if(s[i]<='z'&&s[i]>='a'){
    			letters[s[i]-'a']=1;
    		}else if(s[i]>='0'&&s[i]<='9'){
    			digital[s[i]-'0']=1;
    		}else {
    			ch=s[i];
    		}
    	}
    	len = d.size();
    	int t;
    	for(int i=0;i<len;i++){
    		if(d[i]<='z'&&d[i]>='a'){
    			t=d[i]-'a';
    			if(letters[t]!=1 && letters[t]!=0){
    				printf("%c",t+'A');
    				letters[t]=0;
    			}
    		}else if(d[i]<='9'&&d[i]>='0'){
    			t=d[i]-'0';
    			if(digital[t]!=1&&digital[t]!=0){
    				printf("%d",t);
    				digital[t]=0;
    			}
    		}else {
    			if(ch!='_'){
    				printf("%c",ch);
    				ch='_';
    			}
    		}
    	}
    	printf("
    ");
    	return 0;
    }
    

      



  • 相关阅读:
    oracle中scott/tiger、sys、SYSDBA、system都是什么用
    选择ORACLE数据库字符集
    如何给oracle账户解锁
    nodejs_100个实例(3)_文件读取
    nodejs+express+mongodb简单实现注册登录
    ECharts之类型map(省级,地级市)附(世界地图、中国、省份、地级市地图Json文件)
    nodejs_100个实例(2)
    nodejs_100个实例(1)
    nodejs学习过程2之相关网站2
    nodejs学习过程2之相关网站
  • 原文地址:https://www.cnblogs.com/grglym/p/7892218.html
Copyright © 2011-2022 走看看