PAT 1084 Broken Keyboard

本文介绍了一个简单的模拟类型题目,通过对比输入的字符串和实际打出的字符串来找出损坏的键盘按键。输入包括两行字符串,输出则是损坏的按键列表。

PAT 1084 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

地址: http://pat.zju.edu.cn/contests/pat-a-practise/1084
算法:此题属于简单的模拟类型题。我的方法是,先把所有字母都转为大写字母,然后从源字符串和输入字符串开始,若当前两个字符相等,说明这个键没有坏,二者同时向后移动一位;若两个字符串不相等,说明这个键是坏的,若该键未记录则记录,
然后源串向后移动一位,输入串不移动。代码:
 1 #include<string>
 2 #include<iostream>
 3 #include<vector>
 4 using namespace std;
 5 
 6 int main()
 7 {
 8   string originalStr, typeStr;
 9   while(cin >> originalStr >> typeStr){
10     int originalN = originalStr.size();
11     int typeN = typeStr.size();
12     int i = 0, j = 0;
13     for(i = 0; i < originalN; ++i){
14       if(originalStr[i] >= 'a' && originalStr[i] <= 'z')
15         originalStr[i] = originalStr[i] - 'a' + 'A';
16     }
17     for(i = 0; i < typeN; ++i){
18       if(typeStr[i] >= 'a' && typeStr[i] <= 'z')
19         typeStr[i] = typeStr[i] - 'a' + 'A';
20     }
21     vector<bool> isBroken(256,false);
22     string result;
23     for(i = 0; i < originalN; ++i){
24       if(originalStr[i] == typeStr[j]){
25         ++j;
26       }else{
27         if(!isBroken[originalStr[i]]){
28           isBroken[originalStr[i]] = true;
29           result.push_back(originalStr[i]);
30         }
31       }
32     }
33     cout << result << endl;
34   }
35   return 0;
36 }

 

posted on 2014-09-07 09:56 Boostable 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/boostable/p/pat_1084.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值