博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ1509 Glass Beads 【后缀自动机】
阅读量:5124 次
发布时间:2019-06-13

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

题目大意

找一个环串的起点,使得从其开始遍历字典序最小

题解

建立后缀自动机,从根开始走length步,走到的点就是这个最小串的结尾,其step即表示它在串中的位置

step - n + 1即为开始位置

#include
#include
#include
#include
#include
#define LL long long int#define REP(i,n) for (int i = 1; i <= (n); i++)#define Redge(u) for (int k = h[u],to; k; k = ed[k].nxt)#define BUG(s,n) for (int i = 1; i <= (n); i++) cout<
<<' '; puts("");#define cls(x) memset(x,0,sizeof(x))using namespace std;const int maxn = 40005,maxm = 100005,INF = 1000000000;inline int read(){ int out = 0,flag = 1; char c = getchar(); while (c < 48 || c > 57) {if (c == '-') flag = -1; c = getchar();} while (c >= 48 && c <= 57) {out = (out << 3) + (out << 1) + c - '0'; c = getchar();} return out * flag;}int pre[maxn],step[maxn],ch[maxn][26],cnt,last,n;char s[maxn];void ins(int x){ int p = last,np = ++cnt; cls(ch[np]); last = np; step[np] = step[p] + 1; while (p && !ch[p][x]) ch[p][x] = np,p = pre[p]; if (!p) pre[np] = 1; else { int q = ch[p][x]; if (step[q] == step[p] + 1) pre[np] = q; else { int nq = ++cnt; step[nq] = step[p] + 1; for (int i = 0; i < 26; i++) ch[nq][i] = ch[q][i]; pre[nq] = pre[q]; pre[np] = pre[q] = nq; while (ch[p][x] == q) ch[p][x] = nq,p = pre[p]; } }}void solve(){ int u = 1; REP(i,n) for (int j = 0; j < 26; j++) if (ch[u][j]){u = ch[u][j]; break;} printf("%d\n",step[u] - n + 1);}int main(){ int T = read(); while (T--){ scanf("%s",s + 1); n = strlen(s + 1); last = cnt = 1; memset(ch[1],0,sizeof(ch[1])); REP(i,n) ins(s[i] - 'a'); REP(i,n) ins(s[i] - 'a'); solve(); } return 0;}

转载于:https://www.cnblogs.com/Mychael/p/8298100.html

你可能感兴趣的文章
距离公式汇总以及Python实现
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
PyQt5--EventSender
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
Android打包key密码丢失找回
查看>>
VC6.0调试技巧(一)(转)
查看>>
php match_model的简单使用
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
回调没用,加上iframe提交表单
查看>>
待整理
查看>>
C# 类(10) 抽象类.
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
jvm参数
查看>>
STM32单片机使用注意事项
查看>>