zoukankan      html  css  js  c++  java
  • Codeforces Round #272 (Div. 2)-B. Dreamoon and WiFi

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

    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.

    解题思路: 求接收到的信号与初始信号直接相同的概率

    所以只要记录下接收到的有几个不确定的(即‘?’的个数),然后依次枚举即可


    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>

    int main(){
        char str1[15], str2[15];
        int num1[15], num2[15], len, sum, i, t, x, y, n, m, flag;
        while(scanf("%s %s", str1, str2) != EOF){
            len =strlen(str1);
            sum = 0;
            for(i = 0; i < len; i++){
                num1[i] = str1[i] == '+' ? 1 : 0;
                if(str2[i] == '+'){
                    num2[i] = 1;
                }
                else if(str2[i] == '-'){
                    num2[i] = 0;
                }
                else if(str2[i] == '?'){
                    sum++;
                }
            }
            x = 0;
            flag = 1;
            for(i = 0; i < len; i++){
                x += num1[i] == 1 ? 1 : - 1;
            }
            for(i = 0; i < sum; i++){
                flag *= 2;
            }
            t = flag;
            n = m = 0;
            while(t > 0){
                for(i = 0; i < len; i++){
                    if(str2[i] == '?'){
                        if(t % 2 == 1){
                            num2[i] = 1;
                        }
                        else{
                            num2[i] = 0;
                        }
                        t /= 2;
                    }
                }
                y = 0;
                for(i = 0; i < len; i++){
                    y += (num2[i] == 1 ? 1 : -1);
                }
                t = --flag;
                if(x == y){
                    n++;
                }
                m++;
            }
            printf("%.12lf ",(double)n / (double)m);
        }
        return 0;
    }
  • 相关阅读:
    非局部模块(Non Local module)
    Coarse-to-Fine超分辨率相关
    JPEG Image Super-Resolution via Deep Residual Network
    基于深度学习的超分辨率汇总
    基于注意力机制超分辨率汇总
    多曝光相关
    Antecedent Membership Functions相关资料
    shift and add算法相关
    【学习笔记】QT常用类及应用
    Python3 freetds.conf odbcinst.ini odbc.ini 之间的关系
  • 原文地址:https://www.cnblogs.com/angle-qqs/p/4025455.html
Copyright © 2011-2022 走看看