1050 String Subtraction(20 分)

Given two strings S​1​​ and S​2​​, S=S​1​​−S​2​​ is defined to be the remaining string after taking all the characters in S​2​​ from S​1​​. Your task is simply to calculate S​1​​−S​2​​ for any given strings. However, it might not be that simple to do it fast.

Input Specification:

Each input file contains one test case. Each case consists of two lines which gives S​1​​ and S​2​​, respectively. The string lengths of both strings are no more than 10​4​​. It is guaranteed that all the characters are visible ASCII codes and white space, and a new line character signals the end of a string.

Output Specification:

For each test case, print S​1​​−S​2​​ in one line.

Sample Input:

They are students.
aeiou

Sample Output:

Thy r stdnts.
 #include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <map>
#include <stack>
#include <vector>
#include <queue>
#include <set>
#define LL long long
using namespace std;
const int MAX = 1e4 + ; string s1, s2;
int book[MAX] = {}, len1, len2; int main()
{
// freopen("Date1.txt", "r", stdin);
getline(cin, s1);
getline(cin, s2);
len1 = s1.size(), len2 = s2.size();
for (int i = ; i < len2; ++ i) book[s2[i]] = ;
for (int i = ; i < len1; ++ i)
if (!book[s1[i]])
printf("%c", s1[i]);
return ;
}

最新文章

  1. 记一次MYSQL更新优化
  2. poj 2376 Cleaning Shifts
  3. Java的反射机制(Reflection)
  4. 前端页面js与flash交互——js获取flash对象,并传递参数
  5. UVa 11082 (网络流建模) Matrix Decompressing
  6. Oracle数据库简介
  7. Sort list by merge sort
  8. 初识Selenium(二)
  9. 学生成绩管理C语言版
  10. 如何编写高效的SQL
  11. Linux(5)压缩和归档管理
  12. linux下tomcat启动很慢的解决办法
  13. net view 提示6118错误 解决方法。
  14. 654. Maximum Binary Tree最大二叉树
  15. 翻译:insert on duplicate key update(已提交到MariaDB官方手册)
  16. C# IE浏览器 判断是否已经打开了指定Url
  17. cf1088D Ehab and another another xor problem (构造)
  18. MVC API 返回json 对象,使用netjson 返回
  19. java设计模式学习
  20. React16新特性

热门文章

  1. webapck 按需加载及版本控制问题
  2. comparator接口实现时,只需要实现 int compare(T o1, T o2)方法?
  3. std::this_thread::yield/sleep_for
  4. Logstash 入门
  5. 如何使用代理IP进行数据抓取,PHP爬虫抓取亚马逊商品数据
  6. 是可忍孰不可忍!!nodepad++作者台独分子,恶毒言论!!!
  7. unity image 设置图片
  8. Object 的方法总结
  9. phpstorm 2016.2.2 激活
  10. JVM参数及调优