当前位置 : 主页 > 编程语言 > c语言 >

B. Dreamoon and WiFi dfs 概率

来源:互联网 收集:自由互联 发布时间:2023-09-07
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

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.

Examples
inputCopy
++-+-
+-+-+
outputCopy
1.000000000000
inputCopy
+-+-
+-??
outputCopy
0.500000000000
inputCopy
+++
??-
outputCopy
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.

数据范围较小,直接dfs 即可;

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<string>
#include<cmath>
#include<map>
#include<set>
#include<vector>
#include<queue>
#include<string>
#include<bitset>
typedef long long ll;
using namespace std;
typedef unsigned long long int ull;
#define maxn 200005
#define ms(x) memset(x,0,sizeof(x))
#define Inf 0x7fffffff
#define inf 0x3f3f3f3f
const long long int mod = 1e9 + 7;
#define pi acos(-1.0)
#define pii pair<int,int>
#define pll pair<ll,ll>



ll quickpow(ll a, ll b) {
    ll ans = 1;
    while (b > 0) {
        if (b % 2)ans = ans * a;
        b = b / 2;
        a = a * a;
    }
    return ans;
}

int gcd(int a, int b) {
    return b == 0 ? a : gcd(b, a%b);
}
string s1, s2;
int ach, sum;
int n1, n2;
int ans;
void dfs(int len, int ac) {
    if (len == n1) {
        sum++;
        if (ans == ac) {
            ach++;
        }
        return;
    }
    if (s2[len] == '+') {
        dfs(len + 1, ac + 1);
    }
    else if (s2[len] == '-') {
        dfs(len + 1, ac - 1);
    }
    else {
        dfs(len + 1, ac + 1);
        dfs(len + 1, ac - 1);
    }

}

int main()
{
    //ios::sync_with_stdio(false);
    cin >> s1 >> s2;
    n1 = s1.length();
    n2 = s2.length();
    ach = 0; sum = 0;
    for (int i = 0; i < n1; i++) {
        if (s1[i] == '+') {
            ans++;
        }
        else ans--;
    }
    dfs(0, 0);
    printf("%.10f\n", 1.0000000*ach / sum);
}
【本文由:湖北阿里云代理 http://www.558idc.com/aliyun.html 复制请保留原URL】
网友评论