Submission #5736724


Source Code Expand

Copy
//! ----------------------------------------------
//! Framework <https://github.com/vain0x/procon>
//!
//! See the bottom of file for solution.
//! ----------------------------------------------
#![allow(unused_imports)]
#![allow(non_snake_case)]
use std::cell::RefCell;
use std::cmp::{max, min, Ordering};
use std::collections::*;
use std::fmt::{Debug, Display, Formatter, Write as FmtWrite};
use std::io::{stderr, stdin, BufRead, Write};
use std::mem::{replace, swap};
use std::ops::*;
use std::rc::Rc;
/// Print values to standard error if debug mode.
#[allow(unused_macros)]
macro_rules! debug {
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
//! ----------------------------------------------
//! Framework <https://github.com/vain0x/procon>
//!
//! See the bottom of file for solution.
//! ----------------------------------------------

#![allow(unused_imports)]
#![allow(non_snake_case)]

use std::cell::RefCell;
use std::cmp::{max, min, Ordering};
use std::collections::*;
use std::fmt::{Debug, Display, Formatter, Write as FmtWrite};
use std::io::{stderr, stdin, BufRead, Write};
use std::mem::{replace, swap};
use std::ops::*;
use std::rc::Rc;

/// Print values to standard error if debug mode.
#[allow(unused_macros)]
macro_rules! debug {
    ($($e:expr),*) => {
        #[cfg(debug_assertions)]
        $({
            let (e, mut err) = (stringify!($e), stderr());
            writeln!(err, "\x1B[33m{}\x1B[0m = {:?}", e, $e).unwrap()
        })*
    };
}

/// Read from standard input and parse each word.
/// - `read!(T, U, ..)` parses a line as a tuple of words.
/// - `read![[T]]` parses a line as an array of words.
/// - `read![..; N]` parses `N` lines, using `read!(..)` repeatedly.
#[allow(unused_macros)]
macro_rules! read {
    ([$t:ty] ; $n:expr) =>
        ((0..$n).map(|_| read!([$t])).collect::<Vec<_>>());
    ($($t:ty),+ ; $n:expr) =>
        ((0..$n).map(|_| read!($($t),+)).collect::<Vec<_>>());
    ([$t:ty]) =>
        (rl().split_whitespace().map(|w| w.parse().unwrap()).collect::<Vec<$t>>());
    ($($t:ty),*) => {{
        let buf = rl();
        let mut w = buf.split_whitespace();
        ($(w.next().unwrap().parse::<$t>().unwrap()),*)
    }};
}

/// Read a line from standard input.
#[allow(dead_code)]
fn rl() -> String {
    let mut buf = String::new();
    stdin().read_line(&mut buf).unwrap();

    #[allow(deprecated)]
    buf.trim_right().to_owned()
}

// -----------------------------------------------
// Solution
// -----------------------------------------------

const P: i64 = 1_000_000_007;

pub fn pow(x: i64, n: i64) -> i64 {
    let (mut x, mut y, mut n) = (x % P, 1_i64, n);
    while n > 0 {
        if n % 2 != 0 {
            y = (y * x) % P;
            n -= 1;
        }

        x = (x * x) % P;
        n /= 2;
    }
    y
}

pub fn inv(x: i64) -> i64 {
    pow(x, P - 2)
}

fn main() {
    let (N, A, B, C) = read!(usize, i64, i64, i64);

    let M = 2 * N;

    // fact[n] = n! (mod P)
    let mut fact = vec![0; M + 1];
    fact[0] = 1;
    fact[1] = 1;
    for n in 2..M + 1 {
        // n! = (n - 1!) * n
        fact[n] = fact[n - 1] * n as i64 % P;
    }

    // C(n, r) = n! / ((n - r)! r!)
    let combo = |n: usize, r: usize| {
        let mut z = inv(fact[n - r]);
        z *= inv(fact[r]);
        z %= P;
        z *= fact[n];
        z %= P;
        z
    };

    let mut E = 0;
    let percent = inv(100);
    let A = A * percent % P;
    let B = B * percent % P;
    let C = C * percent % P;
    let D = inv(P + 1 - C);
    debug!((A, B, C, D));

    let A = A * D % P;
    let B = B * D % P;

    for x in N..2 * N {
        let mut p = 1;
        p *= pow(A, N as i64);
        p %= P;
        p *= pow((P + 1 - A) % P, (x - N) as i64);
        p %= P;

        let mut q = 1;
        q *= pow(B, N as i64);
        q %= P;
        q *= pow((P + 1 - B) % P, (x - N) as i64);
        p %= P;

        let mut r = p + q;
        r %= P;
        r *= combo(x - 1, N - 1);
        r %= P;
        r *= x as i64;
        r %= P;

        E += r;
        E %= P;
    }

    E *= D;
    E %= P;

    println!("{}", E)
}

Submission Info

Submission Time
Task C - Best-of-(2n-1)
User vain0
Language Rust (1.15.1)
Score 500
Code Size 3597 Byte
Status AC
Exec Time 70 ms
Memory 6396 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 500 / 500
Status
AC × 4
AC × 13
Set Name Test Cases
Sample example0.txt, example1.txt, example2.txt, example3.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, example0.txt, example1.txt, example2.txt, example3.txt
Case Name Status Exec Time Memory
000.txt AC 66 ms 4352 KB
001.txt AC 70 ms 4352 KB
002.txt AC 68 ms 4352 KB
003.txt AC 70 ms 6396 KB
004.txt AC 69 ms 6396 KB
005.txt AC 67 ms 4352 KB
006.txt AC 70 ms 6396 KB
007.txt AC 70 ms 6396 KB
008.txt AC 70 ms 6396 KB
example0.txt AC 2 ms 4352 KB
example1.txt AC 2 ms 4352 KB
example2.txt AC 2 ms 4352 KB
example3.txt AC 70 ms 6396 KB


2025-03-15 (Sat)
07:00:37 +00:00