【ZOJ 3430 Detect the Virus】 AC自动机

news/2025/1/2 1:07:30/

ZOJ3430
题意就是给你一个加密的单词,加密方式就是先把字符按照ASCII表转为2进制,再截取6个为一段转为10进制,再去表中改为对应字符。
我们只需要把所有关键字和文本串都解码之后,就是一个最朴素的AC自动机了。
密文转换方法是向kuangbin大神学习的,我们通过思考可以发现,解码的过程就是把四个字符转换为3个字符的过程,所以我们只要对加密串进行一些二进制操作,就可以直接将24位二进制码分为3个八位二进制码。具体过程请参考代码。
注意此题字符可能有256种,所以要用unsigned char
而且 ZOJ RE和MLE均返回 Segmentation Fault ,此题卡内存比较严重,需要好好计算一下
ZOJ3430代码

#include<stdio.h>
#include<algorithm>
#include<iostream>
#include<string.h>
#include<queue>
#include<set>
using namespace std;
const int maxn =5e4+5;
unsigned char aa[maxn];
#define dbg(x) cout<<#x<<" "<<x<<endl;
struct ACTrie
{int tree[maxn][256], fail[maxn],end_[maxn];int root,cnt,num;set<int> s;int newnode(){for(int i=0;i<256;i++)tree[cnt][i]=-1;end_[cnt]=0;return cnt++;}void init(){cnt=0;num=0;root=newnode();}void insert_(unsigned char str[],int len){int pos=root;for(int i=0;i<len;i++){int id=str[i];if(tree[pos][id]==-1) tree[pos][id]=newnode();pos=tree[pos][id];}end_[pos]=++num;}void build(){queue<int> que;fail[root]=root;for(int i=0;i<256;i++){if(tree[root][i]==-1) tree[root][i]=root;else{fail[tree[root][i]]=root;que.push(tree[root][i]);}}while(!que.empty()){int now=que.front();que.pop();for(int i=0;i<256;i++){if(tree[now][i]==-1) tree[now][i]=tree[fail[now]][i];else{fail[tree[now][i]]=tree[fail[now]][i];que.push(tree[now][i]);}}}}int query(unsigned char *str,int len){s.clear();int now=root;int res=0;for(int i=0;i<len;i++){int id=(int)str[i];now=tree[now][id];int temp=now;while(temp!=root){if(end_[temp]!=0) s.insert(end_[temp]);temp=fail[temp];}}return (int)s.size();}
};
unsigned char cal(char c)
{if(c>='A'&&c<='Z'){return c-'A';}if(c>='a'&&c<='z'){return c-'a'+26;}if(c>='0'&&c<='9'){return c-'0'+52;}if(c=='+')  return 62;else return 63;
}
int change(unsigned char str[],int len)
{int t=0;for(int i=0;i<len;i+=4)//每四个字符计算一次,转换为三个字符{aa[t++]=((str[i]<<2)|(str[i+1]>>4));//截取第一个字符的全部+第二个字符前两位if(i+2 < len)aa[t++]=( (str[i+1]<<4)|(str[i+2]>>2) );//截取第二个字符后四位+第三个字符前四位if(i+3 < len)aa[t++]= ( (str[i+2]<<6)|str[i+3] );//截取第三个字符后两位+第四个字符全部}return t;
}
ACTrie ac;
char str[maxn];
unsigned char ss[maxn];
int main()
{int n,m;while(scanf("%d",&n)!=EOF){ac.init();while(n--){scanf("%s",str);int len=strlen(str);while(str[len-1]=='=') len--;for(int i=0;i<len;i++) ss[i]=cal(str[i]);int len2 = change(ss,len);ac.insert_(aa,len2);//转换之后插入AC自动机}ac.build();scanf("%d",&m);while(m--){//gets(str);scanf("%s",str);int len=strlen(str);while(str[len-1]=='=') len--;for(int i=0;i<len;i++) ss[i]=cal(str[i]);int len2 = change(ss,len);printf("%d\n",ac.query(aa,len2));}printf("\n");}return 0;
}

http://www.ppmy.cn/news/216965.html

相关文章

DELL PowerEdge T110 II U盘安装系统

1、只能安装服务器系统&#xff0c;根据提供的说明书&#xff0c;若是安装的低版本&#xff0c;需要进行引导来安装系统&#xff0c;通过对系统进行设置&#xff0c;在装上相应的系统。 2、但是看到说明书上说&#xff0c;装windows server 2008 r2等&#xff0c;不需要引导&a…

ZOJ - 3430 Detect the Virus —— AC自动机、解码

题目链接&#xff1a;https://vjudge.net/problem/ZOJ-3430 Detect the Virus Time Limit: 2 Seconds Memory Limit: 65536 KB One day, Nobita found that his computer is extremely slow. After several hours work, he finally found that it was a virus that made …

ZOJ - 3430 ac自动机

这题主要就是解码过程很恶心&#xff0c;不能用char存&#xff0c;一共wa了20发 题意&#xff1a;先给n串加密后的字符&#xff0c;然后m串加密后的字符&#xff0c;解码之后求n对应每个m的匹配数&#xff0c;很显然的ac自动机 加密过程是先用对应ascii表的标号来代替字符&…

DM3730 x-loader 分析 六 UART

一. UART初始化 1.先配置MUX_DEFAULT&#xff0c;使需要使用UART管脚有效 2.配置相应寄存器&#xff0c;针对x-loader/Drivers/Ns16550.c文件&#xff0c;总结一个便于分析表格 关于波特率的产生&#xff0c;先看sprugn4r.pdf截图 可见波特率的产生需要&#xff0c;48MHz&…

【JZOJ 3430】DY引擎

Description BOSS送给小唐一辆车。小唐开着这辆车从PKU出发去ZJU上课了。 众所周知&#xff0c;天朝公路的收费站超多的。经过观察地图&#xff0c;小唐发现从PKU出发到ZJU的所有路径只会有N&#xff08;2<N<300&#xff09;个不同的中转点&#xff0c;其中有M&#xf…

HDU3430-扩展中国剩余定理

刚开始一直把题意看错了。。。体测完智商急剧下降 正确理解题意以后自己写一直wa&#xff0c;而且并不知道是哪里的问题&#xff0c;在网上看了一下其他人写的改了改自己的就过了&#xff0c;可是之前的还是不知道为什么不对。 题意大概就是有一个置换群&#xff0c;问运算多…

ZOJ 3430. Detect the Virus

链接 https://zoj.pintia.cn/problem-sets/91827364500/problems/91827368613 题意 找文本串中有多少种不同的模式串 思路 AC 自动机 按要求转码后套板子 代码 #include<bits/stdc.h> using namespace std; const int N5e45; const int M256; int n,m,mp[M],temp…

【HDU 3430】中国剩余定理

题意&#xff1a;洗牌&#xff0c;1-n的序列&#xff0c;按照序列1的形式变化&#xff0c;问需要多少次操作可以变成序列2&#xff0c;若无输出-1&#xff1b; 题解&#xff1a;先找到循环规律&#xff0c;发现每位的变化情况若是可以到达&#xff0c;则存在循环节&#xff0c…