程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> hdu3689(kmp+dp)

hdu3689(kmp+dp)

編輯:C++入門知識

hdu3689(kmp+dp)


題意:問隨機生成一個長度為m(m<=1000)長度的字符串,出現某個子串s的概率是多少。

解法:dp+kmp優化。ans[i][j]表示i長度,走到了s的j位置的概率,當然這是在i之前沒有出現s的前提下(在狀態轉移時候已經保證了這一點);然後最後的概率就是1-m長度的串分別最後出現s的概率之和。


代碼:

/******************************************************
* @author:xiefubao
*******************************************************/
#pragma comment(linker, "/STACK:102400000,102400000")
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
//freopen ("in.txt" , "r" , stdin);
using namespace std;

#define eps 1e-8
#define zero(_) (_<=eps)
const double pi=acos(-1.0);
typedef long long LL;
const int Max=100010;
const LL INF=0x3FFFFFFF;
int n,m;
struct point
{
    char c;
    double p;
} points[30];
map maps;
string s;
double ans[1010][12];
int Next[30];
void get_next()
{
    int i=0;
    int j=Next[0]=-1;
    int len=s.size();
    while(i>points[i].c>>points[i].p;
        }
        cin>>s;
        get_next();
        ans[0][0]=1.0;
        for(int i=1; i<=m; i++)
        {
            for(int j=1; j<=s.size(); j++)
                for(int k=0; k

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved