zoukankan      html  css  js  c++  java
  • PAT甲级——A1084 Broken Keyboard

    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

     1 #include <iostream>
     2 #include <string>
     3 using namespace std;
     4 string str1, str2;
     5 int main()
     6 {
     7     cin >> str1 >> str2;
     8     string res="";
     9     char c;
    10     for (int i = 0, j = 0; i < str1.length(); ++i)
    11     {
    12         while (j < str2.length() && str1[i] == str2[j])
    13         {
    14             ++i;
    15             ++j;
    16         }
    17         c = toupper(str1[i]);
    18         if (res.find(c) == -1)
    19             res += c;
    20     }
    21     cout << res << endl;
    22     return 0;    
    23 }
  • 相关阅读:
    Final Zadanie 题解
    CF1096E The Top Scorer 题解
    [SDOI2008]Sue的小球 题解
    柱爷与远古法阵 题解
    [ZOJ3329] One Person Game 题解
    扑克牌 题解
    CF494C Helping People 题解
    CF1025D Recovering BST 题解
    linux基础学习-Raid 0 1 5 10的原理、特点、性能区别
    linux基础学习-CentOS7.5用户管理
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11337111.html
Copyright © 2011-2022 走看看