您的位置:首页 > 其它

B. Dreamoon and WiFi

2014-11-07 17:07 281 查看
time limit per test
1 second

memory limit per test
256 megabytes

input
standard input

output
standard output

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 test(s)

input
++-+-
+-+-+


output
1.000000000000


input
+-+-
+-??


output
0.500000000000


input
+++
??-


output
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.

解题说明:此题是一道概率题,判断最终位置是否为指定方位,求出所有可能,然后计算概率即可

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<string>
#include<cmath>
#include<cstdlib>
using namespace std;

int N;
char s1[15], s2[15];
double *P[15];

int main()
{
gets(s1 + 1);
gets(s2 + 1);
N = strlen(s1 + 1);
P[0] = (double*) malloc(31 * sizeof(double)) + 15;
int i, j;
for (i = -15; i <= 15; i++)
{
P[0][i] = !i;
}
int pos = 0;
for (i = 1; i <= N; i++)
{
P[i] = (double*) malloc(31 * sizeof(double)) + 15;
pos += (s1[i] == '+' ? 1 : -1);
char c = s2[i];
P[i][-15] = P[i][15] = 0;
for (j = -14; j <= 14; j++)
{
if (c == '+')
{
P[i][j] = P[i - 1][j - 1];
}
else if (c == '-')
{
P[i][j] = P[i - 1][j + 1];
}
else
{
//switch with 1/2 probability
P[i][j] = (P[i - 1][j - 1] + P[i - 1][j + 1]) / 2;
}
}
}
printf("%.10lf\n", P
[pos]);
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: