B. Dreamoon and WiFi
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:

  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.

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.

将全部可能的路径dfs推断一遍即可了。

代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
char s1[20],s2[20];
int acou=0,dao=0,sum=0;
int n1,n2;
void solve(int n,int at)
{
if(n==n2)
{
if(at==acou)
dao++;
sum++;
return;
}
if(s2[n]=='+')
solve(n+1,at+1);
else if(s2[n]=='-')
solve(n+1,at-1);
else
{
solve(n+1,at+1);
solve(n+1,at-1);
}
} int main()
{
scanf("%s",s1);
scanf("%s",s2);
n1=strlen(s1);
n2=strlen(s2);
for(int i=0;i<n1;i++)
if(s1[i]=='+')
acou++;
else
acou--;
solve(0,0);
printf("%.12f\n",(double)(dao)/(sum));
return 0;
}

最新文章

  1. 布局包含Image和Title的UIButton
  2. 国内常用DNS地址介绍
  3. ios CGRect
  4. [R语言]forecast.Arima中使用xreg报错
  5. spring4+mybatis3+maven
  6. android判断EditText输入的数字、中文还是字母方法
  7. [Tool] 使用Astah绘制UML图形
  8. Vivado HLS与System Generator:联系与区别
  9. HDU 4675 GCD of Sequence(容斥)
  10. memcache和memcached
  11. 洛谷 [P2483] [模板] k短路
  12. RPC服务和HTTP服务
  13. 读书笔记之第五回深入浅出关键字---把new说透
  14. 2018-2019-2 20165236郭金涛《网络对抗》Exp1 PC平台逆向破解
  15. Python游戏编程入门3
  16. asp.net 网页跳转的几种常用方法
  17. verdi bin工具
  18. DirectX之顶点法线的计算
  19. ssh服务及安全配置
  20. 关于gcc、make和CMake的区别

热门文章

  1. 李兴华JavaWeb开发笔记
  2. elf格式分析
  3. loj1245(数学)
  4. OpenStack 中的neutron-server启动过程
  5. NAT ALG原理
  6. linux开机启动服务和chkconfig使用方法(转)
  7. HTML5 CSS3专题 纯CSS打造相冊效果
  8. 利用h5标签在网页上播放音乐
  9. SQL SERVER IN参数化处理
  10. Linux命令之文本处理(二)