博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Hnu 11187 Emoticons :-) (ac自己主动机+贪心)
阅读量:6051 次
发布时间:2019-06-20

本文共 1980 字,大约阅读时间需要 6 分钟。

题目大意:

破坏文本串。使之没有没有出现表情。破坏就是用空格替换。问最少须要破坏多少个字符。

思路分析:

初看跟Hdu 2457 没什么差别,事实上Hdu2457是要求将字符替换成ACGT,而这个仅仅须要替换成空格。

而空格是在表情串中不曾出现的。所以要破坏的时候就要遍历的指针赋为根节点,继续遍历。。

每一次变成根的时候ans就加一。

#include 
#include
#include
#include
#define inf 0x3f3f3f3fusing namespace std;const char tab = 0;const int max_next = 128;int idx;struct trie{ struct trie *fail; struct trie *next[max_next]; int isword; int index; trie() { isword=0; index=0; memset(next,NULL,sizeof next); fail=NULL; }};int rev[256];trie *que[100005],ac[100005];int head,tail;trie *New(){ trie *temp=&ac[idx]; for(int i=0;i
next[i]=NULL; temp->fail=NULL; temp->isword=0; temp->index=idx++; return temp;}void Insert(trie *root,char *word,int len){ trie *t=root; for(int i=0;i
next[word[i]]==NULL) t->next[word[i]]=New(); t=t->next[word[i]]; } t->isword++;}void acbuild(trie *root){ int head=0,tail=0; que[tail++]=root; root->fail=NULL; while(head
next[i]){ if(temp==root)temp->next[i]->fail=root; else { p=temp->fail; while(p!=NULL){ if(p->next[i]){ temp->next[i]->fail=p->next[i]; break; } p=p->fail; } if(p==NULL)temp->next[i]->fail=root; } if(temp->next[i]->fail->isword)temp->next[i]->isword++; que[tail++]=temp->next[i]; } else if(temp==root)temp->next[i]=root; else temp->next[i]=temp->fail->next[i]; } }}void del(trie *root){ for(int i=0;i
next[i])del(root->next[i]); free(root);}int dp[205][205];int solve(char *word,int len,trie *root){ trie *r=root; int ans=0; for(int i=0;i
next[word[i]]->isword)r=root,ans++; else r=r->next[word[i]]; } return ans;}char word[10005];int main(){ int n,cas=1,m; while(scanf("%d%d",&n,&m)!=EOF) { getchar(); if(n==0 && m==0)break; idx=0; trie *root=New(); for(int i=1;i<=n;i++) { gets(word); Insert(root,word,strlen(word)); } acbuild(root); int ans=0; while(m--){ gets(word); ans+=solve(word,strlen(word),root); } printf("%d\n",ans); } return 0;}

转载地址:http://vsxex.baihongyu.com/

你可能感兴趣的文章
tinyxml第一课 生成xml文件
查看>>
nginx和httpd反向代理和负载均衡tomcat集群
查看>>
注释 标识符 常量 变量
查看>>
zabbix通过Discovery批量监控Oracle表空间
查看>>
solr中facet及facet.pivot理解(整合两篇文章保留参考)
查看>>
解决所有浏览器兼容flash ,并解决 Chrome 27.0 的版本不能展示flash 的问题
查看>>
openstack qos限速
查看>>
自由软件
查看>>
我的友情链接
查看>>
POJO、BO与VO
查看>>
SCCM2012R2部署之九:委派管理
查看>>
程序员面试的注意事项
查看>>
查看Ubuntu硬件信息命令
查看>>
Redhat 6.8使用mailx带账号认证发邮件
查看>>
windows下查看真实的IP与MAC工具
查看>>
我的友情链接
查看>>
IE9浏览器固定网站功能的实现方法
查看>>
保护你的Web服务器 iptables防火墙脚本全解读
查看>>
Swift分支语句—switch语句
查看>>
oracle2
查看>>