結果

問題 No.162 8020運動
ユーザー koba-e964koba-e964
提出日時 2017-02-07 01:20:40
言語 Rust
(1.83.0 + proconio)
結果
TLE  
実行時間 -
コード長 2,404 bytes
コンパイル時間 13,370 ms
コンパイル使用メモリ 401,480 KB
実行使用メモリ 18,256 KB
最終ジャッジ日時 2024-12-24 09:20:02
合計ジャッジ時間 145,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 435 ms
10,656 KB
testcase_01 AC 4,408 ms
11,296 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 435 ms
10,660 KB
testcase_10 TLE -
testcase_11 AC 4,334 ms
11,168 KB
testcase_12 AC 2,169 ms
10,656 KB
testcase_13 TLE -
testcase_14 AC 873 ms
10,792 KB
testcase_15 AC 879 ms
10,784 KB
testcase_16 AC 2,615 ms
10,656 KB
testcase_17 AC 1,325 ms
10,788 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 433 ms
6,820 KB
testcase_27 AC 4,801 ms
6,820 KB
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::*;
#[allow(unused_imports)]
use std::collections::*;
use std::io::*;
#[allow(dead_code)]
fn getline() -> String {
    let mut ret = String::new();
    std::io::stdin().read_line(&mut ret).ok();
    return ret;
}
fn get_word() -> String {
    let mut stdin = std::io::stdin();
    let mut u8b: [u8; 1] = [0];
    loop {
        let mut buf: Vec<u8> = Vec::with_capacity(16);
        loop {
            let res = stdin.read(&mut u8b);
            if res.is_err() || res.ok().unwrap() == 0 || u8b[0] <= ' ' as u8 {
                break;
            } else {
                buf.push(u8b[0]);
            }
        }
        if buf.len() >= 1 {
            let ret = std::string::String::from_utf8(buf).unwrap();
            return ret;
        }
    }
}
fn parse<T: std::str::FromStr>(s: &str) -> T { s.parse::<T>().ok().unwrap() }

#[allow(dead_code)]
fn get<T: std::str::FromStr>() -> T { parse(&get_word()) }

fn main() {
    let n = 80 - get::<usize>();
    let p0: f64 = get::<f64>() / 100.0;
    let p1: f64 = get::<f64>() / 100.0;
    let p2: f64 = get::<f64>() / 100.0;
    const B: usize = 14;
    let mut dp = vec![vec![0.0; 1 << B]; n + 1];
    dp[0][(1 << B) - 1] = 1.0;
    for i in 0 .. n {
        for b1 in 0 .. 1 << B {
            let mut b2 = b1;
            loop {
                let mut prob = 1.0;
                for j in 0 .. B {
                    if (b1 & 1 << j) == 0 { continue; }
                    let p;
                    let mut adj = 0;
                    if j == 0 || (j >= 1 && (b1 & 1 << (j - 1)) == 0) {
                        adj += 1;
                    }
                    if j == B - 1 || (j < B - 1 && (b1 & 1 << (j + 1)) == 0) {
                        adj += 1;
                    }
                    p = match adj {
                        0 => p2,
                        1 => p1,
                        2 => p0,
                        _ => panic!(),
                    };
                    prob *= if (b2 & 1 << j) == 0 { p } else { 1.0 - p };
                }
                dp[i + 1][b2] += prob * dp[i][b1];
                if b2 == 0 {
                    break;
                }
                b2 = (b2 - 1) & b1;
            }
        }
    }
    let mut tot = 0.0;
    for i in 0 .. 1 << B {
        tot += ((i as u32).count_ones() as f64) * dp[n][i];
    }
    println!("{}", 2.0 * tot);
}
0