标签:存在 mes code push name mat double scanf 包含
UVa 11468
题意:给一些字符和各自出现的概率,在其中随机选择L次,形成长度为L的字符串S,给定K个模板串,求S不包含任意一个串的概率。
首先介绍改良版的AC自动机:
现在将这个AC自动机改版优化:
Source Code :
#include <bits/stdc++.h> using namespace std; const int SIGMA_SIZE = 64; const int MAXNODE = 500; int idx[256]; char s[30][30]; double prob[SIGMA_SIZE]; int n; struct AhoCorasickAutomata { int ch[MAXNODE][SIGMA_SIZE]; int f[MAXNODE]; int match[MAXNODE]; int sz; void init() { sz = 1; memset(ch[0],0,sizeof(ch[0])); } void insert(char *s) { int u = 0,n = strlen(s); for(int i=0; i<n; i++) { int c = idx[s[i]]; if(!ch[u][c]) { memset(ch[sz],0,sizeof(ch[sz])); match[sz] = 0; ch[u][c] = sz++; } u = ch[u][c]; } match[u] = 1; } void getFail() { queue<int> q; f[0] = 0; for(int c=0; c<SIGMA_SIZE; c++) { int u = ch[0][c]; if(u) { f[u] = 0; q.push(u); } } while(!q.empty()) { int r = q.front(); q.pop(); for(int c=0; c<SIGMA_SIZE; c++) { int u = ch[r][c]; if(!u) { ch[r][c]=ch[f[r]][c]; continue; } q.push(u); int v = f[r]; while(v&&!ch[v][c]) v = f[v]; f[u] = ch[v][c]; match[u] |=match[f[u]]; } } } }; AhoCorasickAutomata ac; double d[MAXNODE][105]; int vis[MAXNODE][105]; double getProb(int u,int l) { if(!l) return 1.0; if(vis[u][l]) return d[u][l]; vis[u][l] = 1; double& ans = d[u][l]; ans = 0.0; for(int i=0; i<n; i++) { if(!ac.match[ac.ch[u][i]]) ans += prob[i]*getProb(ac.ch[u][i],l-1); } return ans; } int main() { freopen("in.txt","r",stdin); int T; scanf("%d",&T); for(int kase = 1; kase<=T; kase ++) { int k,l; scanf("%d",&k); for(int i=0; i<k; i++) scanf("%s",s[i]); scanf("%d",&n); for(int i=0; i<n; i++) { char ch[9]; scanf("%s%lf",ch,&prob[i]); idx[ch[0]] = i; } ac.init(); for(int i=0; i<k; i++) ac.insert(s[i]); ac.getFail(); scanf("%d",&l); memset(vis,0,sizeof(vis)); printf("Case #%d: %.6lf\n",kase,getProb(0,l)); } return 0; }
标签:存在 mes code push name mat double scanf 包含
原文地址:http://www.cnblogs.com/TreeDream/p/7565032.html