• Codeforces Round #272 (Div. 2) B. Dreamoon and WiFi dp


    B. Dreamoon and WiFi

    题目连接:

    http://www.codeforces.com/contest/476/problem/B

    Description

    Dreamoon is standing at the position 0 on a number line. Drazil is sending a list of commands through Wi-Fi to Dreamoon's smartphone and Dreamoon follows them.

    Each command is one of the following two types:

    Go 1 unit towards the positive direction, denoted as '+'
    Go 1 unit towards the negative direction, denoted as '-'
    But the Wi-Fi condition is so poor that Dreamoon's smartphone reports some of the commands can't be recognized and Dreamoon knows that some of them might even be wrong though successfully recognized. Dreamoon decides to follow every recognized command and toss a fair coin to decide those unrecognized ones (that means, he moves to the 1 unit to the negative or positive direction with the same probability 0.5).

    You are given an original list of commands sent by Drazil and list received by Dreamoon. What is the probability that Dreamoon ends in the position originally supposed to be final by Drazil's commands?

    Input

    The first line contains a string s1 — the commands Drazil sends to Dreamoon, this string consists of only the characters in the set {'+', '-'}.

    The second line contains a string s2 — the commands Dreamoon's smartphone recognizes, this string consists of only the characters in the set {'+', '-', '?'}. '?' denotes an unrecognized command.

    Lengths of two strings are equal and do not exceed 10.

    Output

    Output a single real number corresponding to the probability. The answer will be considered correct if its relative or absolute error doesn't exceed 10 - 9.

    Sample Input

    ++-+-
    +-+-+

    Sample Output

    1.000000000000

    Hint

    题意

    给你一个串s1,和一个串s2

    然后s2中有一些问号,有0.5的概率是向左边,有0.5的概率是向右边走。

    问你s2结束之后,恰好走到s1串走到的目的地的概率是多少。

    题解:

    数据范围很小,怎么做都行。

    我是概率dp,dp[i][j]表示考虑到执行第二个串的第i位现在在j位置的概率是多少。

    代码

    #include<bits/stdc++.h>
    using namespace std;
    
    double dp[100][100];
    char s1[50],s2[50];
    int main()
    {
        scanf("%s%s",s1+1,s2+1);
        int level = 50;
        int pos=50;
        int len1 = strlen(s1+1);
        for(int i=1;i<=len1;i++)
        {
            if(s1[i]=='+')pos++;
            else pos--;
        }
        dp[0][level]=1;
        for(int i=1;i<=len1;i++)
        {
            if(s2[i]=='+')for(int j=1;j<100;j++)
                dp[i][j]=dp[i-1][j-1];
            if(s2[i]=='-')for(int j=0;j<99;j++)
                dp[i][j]=dp[i-1][j+1];
            if(s2[i]=='?')for(int j=1;j<99;j++)
                dp[i][j]=0.5*dp[i-1][j-1]+0.5*dp[i-1][j+1];
        }
        printf("%.12f
    ",dp[len1][pos]);
    }
  • 相关阅读:
    数据科学工作中存在的7大问题与解决方案
    搞定SEO,看这一篇就够了
    李宏毅老师机器学习课程笔记_ML Lecture 3-1: Gradient Descent
    李宏毅老师机器学习课程笔记_ML Lecture 2: Where does the error come from?
    李宏毅老师机器学习课程笔记_ML Lecture 1: ML Lecture 1: Regression
    李宏毅老师机器学习课程笔记_ML Lecture 1: 回归案例研究
    python爬取中国大学排名
    爬虫实战_爬取静态单张图片
    李宏毅老师机器学习课程笔记_ML Lecture 0-2: Why we need to learn machine learning?
    多线程基础(一)
  • 原文地址:https://www.cnblogs.com/qscqesze/p/5793610.html
Copyright © 2020-2023  润新知