XDOJ_1142_水

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XDOJ_1142_水相关的知识,希望对你有一定的参考价值。

http://acm.xidian.edu.cn/problem.php?id=1142

 

记录字符串中哪些出现过。

 

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;

char a[100005],b[100005];
int s[128];

int main()
{
    while(!scanf("%s%s",a,b))
    {
        memset(s,0,sizeof(s));
        int flag=0,lena = strlen(a),lenb = strlen(b);
        for(int i = 0;i < lenb;i++) s[b[i]] = 1;
        for(int i = 0;i < lena;i++)
        {
            if(!s[a[i]])
            {
                putchar(a[i]);
                flag = 1;
            }
        }
        if(!flag)   printf("EMPTY");
        printf("\n");
    }
    return 0;
 }

 

以上是关于XDOJ_1142_水的主要内容,如果未能解决你的问题,请参考以下文章

XDOJ_1141_水

XDOJ_1129_水

XDOJ_1041_水

XDOJ_1071_水

XDOJ_1008_水

XDOJ_1062_水