zoukankan      html  css  js  c++  java
  • Dreamoon and WiFi

    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:

    1. Go 1 unit towards the positive direction, denoted as '+'
    2. 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.

    Examples
    input
    Copy
    ++-+-
    +-+-+
    output
    Copy
    1.000000000000
    input
    Copy
    +-+-
    +-??
    output
    Copy
    0.500000000000
    input
    Copy
    +++
    ??-
    output
    Copy
    0.000000000000
    Note

    For the first sample, both s1 and s2 will lead Dreamoon to finish at the same position  + 1.

    For the second sample, s1 will lead Dreamoon to finish at position 0, while there are four possibilites for s2: {"+-++", "+-+-", "+--+", "+---"} with ending position {+2, 0, 0, -2} respectively. So there are 2 correct cases out of 4, so the probability of finishing at the correct position is 0.5.

    For the third sample, s2 could only lead us to finish at positions {+1, -1, -3}, so the probability to finish at the correct position  + 3 is 0.


    网上看了别人的想法,感觉思路清奇,DP数组处理的时候用了一点小技巧。

    #include <iostream>
    #include <vector>
    #include <algorithm>
    #include <string>
    #include <set>
    #include <queue>
    #include <map>
    #include <sstream>
    #include <cstdio>
    #include <cstring>
    #include <numeric>
    #include <cmath>
    #include <unordered_set>
    #include <unordered_map>
    #define ll long long
    #define mod 998244353
    using namespace std;
    int dir[4][2] = { {0,1},{0,-1},{-1,0},{1,0} };
    
    
    int main() 
    {
        string s1, s2;
        cin >> s1 >> s2;
        int pos1=0,pos2=0,q=0;
        for (int i = 0; i < s1.size(); i++)
        {
            if (s1[i] == '+')
                pos1++;
            else
                pos1--;
            if (s2[i] == '+')
                pos2++;
            else if (s2[i] == '-')
                pos2--;
            else
                q++;
        }
        vector<vector<double>> dp(11, vector<double>(23));
        dp[0][pos2+11] = 1;
        int len = s1.size();
        for (int i = 1; i <= q; i++)
        {
            for (int j = -10; j <= len; j++)
            {
                dp[i][j + 11] = dp[i - 1][j - 1 + 11] * 0.5 + dp[i - 1][j + 1 + 11] * 0.5;
            }
        }
        printf("%.10f", dp[q][pos1+11]);
        return 0;
    }
  • 相关阅读:
    一条Sql的Spark之旅
    Redis学习笔记:Redis在C#中的使用
    MySQL_表操作
    git上传新项目到coding
    Jenkins 安装 on centos7
    day 36
    表单生成器(Form Builder)之表单数据存储结构mongodb篇
    ORA-16032和ORA-07286 LOG_ARCHIVE_DEST_1没生效
    SQL查询小案例
    mysql从5.6升级到5.7后出现 Expression #1 of ORDER BY clause is not in SELECT list,this is incompatible with DISTINCT
  • 原文地址:https://www.cnblogs.com/dealer/p/12327249.html
Copyright © 2011-2022 走看看