当前位置: 代码迷 >> 综合 >> PIPIOJ 1134: 字符串相减
  详细解决方案

PIPIOJ 1134: 字符串相减

热度:79   发布时间:2023-11-13 15:46:54.0

1134: 字符串相减

题目描述

PIPI现在有一个字符串S1,还有一个字符串S2.他定义了一种字符串减法,S1-S2即在S1中去除掉所有S2中的字符所剩下的字符串。
比如说: S1=“ABA”, S2=“A”, S1-S2=“B”。

输入

输入包含多组测试用例。
每组测试用例包括两个字符串S1和S2。字符串长度不超过104。
每个字符串都是由可见ASCII字符和空格组成。

输出

对于每组测试用例,输出S1-S2的结果。

样例输入

ABA
A

样例输出

B

思路

使用 unordered_map<char, map> mp; 标记字符串 S2 中的出现的字符,然后遍历 S1,若 S1 中字符在 mp 中存在则不输出,否则输出。

#include<bits/stdc++.h>
using namespace std;
int main()
{
    std::ios::sync_with_stdio(false);string s1, s2;while(getline(cin, s1) && getline(cin, s2)){
    unordered_map<char, bool> mp;int len1 = s1.length(), len2 = s2.length();for(char &c:s2)mp[c] = true;for(int i = 0; i < len1; i++)if(!mp.count(s1[i]))cout<<s1[i];cout<<endl;}return 0;
}