//由于N非常大,算法的时间复杂度不能太高,一步小心就超出时间限制了
#include<stdio.h>
#include<math.h>
#include<string.h>
#define N 500086
char a[N];
char b[N];
char c[N];
int hash[200];
int main()
{int i,j;while(scanf("%s %s",a,b)!=EOF){memset(c,0,sizeof(c));memset(hash,0,sizeof(hash));int b_l=strlen(b);for(i=0;i<b_l;i++){hash[b[i]]=1;}int a_l=strlen(a);int k=0;for(i=0;i<a_l;i++){if(hash[a[i]]==0)c[k++]=a[i];} if(k==0)printf("EMPTY\n");elseprintf("%s\n",&c);}return 0;}
详细解决方案
xdoj 1142: 删除字符
热度:52 发布时间:2023-10-29 01:15:04.0
相关解决方案
- MySQL 中关于ERROR 1142 (42000): GRANT command denied to user ‘google‘@‘localhost‘ for table ‘t_user
- xdoj 1142: 删除字符
- xdoj 1055: 如此遍历
- xdoj 1193: 杰师傅与锘爷
- xdoj 1034: 猴子吃桃
- xdoj 1036: 分配宝藏
- xdoj 1037: 倍流畅序列
- xdoj 1056: 寻找BOSS
- xdoj 1151: 万神的方程
- xdoj 1154: Nhywieza 的串
- xdoj 1188: 大大数星星
- xdoj 1195: V8与女友
- xdoj 1192: 锘爷考驾照
- xdoj 1191: 统计相似字符串
- xdoj 1190: 虢莔薅参加运动会
- PIPIOJ 1142: 星球人口
- PAT-1142-Maximal Clique
- 1142: m行n列矩阵转置
- 2022.3.10机考勒让德多项式-xdoj
- 命令行选项-xdoj
- 窗口模拟-xdoj
- 一元稀疏多项式-xdoj
- 相邻区域-xdoj
- 螺旋填数-xdoj
- 字符串长度判断-xdoj
- 元素放置-xdoj
- 成绩处理-xdoj
- 单词排序-xdoj
- 密码强度-xdoj
- 处理字符串-xdoj