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.

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 <map>
using namespace std;

int main(int argc, const char * argv[]) {
    string s0, s, ans = "";
    map<char, int> a;
    cin >> s0 >> s;
    
    for (int i = 0, j = 0; i < s0.size();) {
        if (s0[i] == s[j]) {
            i++;
            j++;
        }else{
            char c = toupper(s0[i]);
            if (!a[c]) {
                a[c] = 1;
                ans = ans + c;
            }
            i++;
        }
    }
    
    cout << ans << endl;
    
    return 0;
}


目录
相关文章
UVA11988 破损的键盘 Broken Keyboard (a.k.a. Beiju Text)
UVA11988 破损的键盘 Broken Keyboard (a.k.a. Beiju Text)
|
前端开发
Warning: This synthetic event is reused for performance reasons.
Warning: This synthetic event is reused for performance reasons.
525 0
Warning: This synthetic event is reused for performance reasons.
【1084】Broken Keyboard (20 分)
在第二个字符串中出现,则跳出内层for循环;内层for循环结束时,如果第二个字符串未出现c1,且c1未被输出过,则输出c1。 对于上面的判断c1是否输出过:hashtable数
93 0
1112. Stucked Keyboard (20)
#include #include #include using namespace std; int main() { int k; string s; map ma; map mb; cin >> k >> s; for(int i = 1; i < s.
871 0
|
关系型数据库 MySQL
|
PHP 开发工具 git
|
JSON 数据格式