結果

問題 No.498 ワープクリスタル (給料日編)
ユーザー hatoohatoo
提出日時 2017-10-15 13:48:07
言語 Rust
(1.77.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 4,513 bytes
コンパイル時間 13,783 ms
コンパイル使用メモリ 377,664 KB
実行使用メモリ 63,872 KB
最終ジャッジ日時 2024-04-28 21:30:09
合計ジャッジ時間 14,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 53 ms
63,744 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 53 ms
63,744 KB
testcase_07 AC 57 ms
63,744 KB
testcase_08 AC 55 ms
63,872 KB
testcase_09 AC 52 ms
63,744 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 9 ms
10,752 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 53 ms
63,744 KB
testcase_19 AC 53 ms
63,872 KB
testcase_20 AC 53 ms
63,744 KB
testcase_21 AC 57 ms
63,744 KB
testcase_22 AC 53 ms
63,744 KB
testcase_23 AC 54 ms
63,872 KB
testcase_24 AC 52 ms
63,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::{max, min};
#[allow(unused_imports)]
use std::collections::{HashMap, HashSet};

mod util {
    use std::io::stdin;
    use std::str::FromStr;
    use std::fmt::Debug;

    #[allow(dead_code)]
    pub fn line() -> String {
        let mut line: String = String::new();
        stdin().read_line(&mut line).unwrap();
        line.trim().to_string()
    }

    #[allow(dead_code)]
    pub fn get<T: FromStr>() -> T
    where
        <T as FromStr>::Err: Debug,
    {
        let mut line: String = String::new();
        stdin().read_line(&mut line).unwrap();
        line.trim().parse().unwrap()
    }

    #[allow(dead_code)]
    pub fn gets<T: FromStr>() -> Vec<T>
    where
        <T as FromStr>::Err: Debug,
    {
        let mut line: String = String::new();
        stdin().read_line(&mut line).unwrap();
        line.split_whitespace()
            .map(|t| t.parse().unwrap())
            .collect()
    }

    #[allow(dead_code)]
    pub fn get2<T: FromStr, U: FromStr>() -> (T, U)
    where
        <T as FromStr>::Err: Debug,
        <U as FromStr>::Err: Debug,
    {
        let mut line: String = String::new();
        stdin().read_line(&mut line).unwrap();
        let mut iter = line.split_whitespace();
        (
            iter.next().unwrap().parse().unwrap(),
            iter.next().unwrap().parse().unwrap(),
        )
    }

    #[allow(dead_code)]
    pub fn get3<S: FromStr, T: FromStr, U: FromStr>() -> (S, T, U)
    where
        <S as FromStr>::Err: Debug,
        <T as FromStr>::Err: Debug,
        <U as FromStr>::Err: Debug,
    {
        let mut line: String = String::new();
        stdin().read_line(&mut line).unwrap();
        let mut iter = line.split_whitespace();
        (
            iter.next().unwrap().parse().unwrap(),
            iter.next().unwrap().parse().unwrap(),
            iter.next().unwrap().parse().unwrap(),
        )
    }
}


#[allow(unused_macros)]
macro_rules! debug {
    ($x: expr) => {
        println!("{}: {:?}", stringify!($x), $x)
    }
}

// (gcd, x, y)
fn extgcd(a: i64, b: i64) -> (i64, i64, i64) {
    if b == 0 {
        (a, 1, 0)
    } else {
        let (gcd, x, y) = extgcd(b, a % b);
        (gcd, y, x - (a / b) * y)
    }
}

fn mod_inverse(a: u64, m: u64) -> u64 {
    let (_, x, _) = extgcd(a as i64, m as i64);
    ((m as i64 + x) as u64 % m) % m
}

fn fact_table(len: usize, m: u64) -> Vec<u64> {
    let mut res = vec![1; len];
    for i in 1..len {
        res[i] = (i as u64 * res[i - 1]) % m;
    }
    res
}


// (a mod p, e when n! = a p^e)
fn mod_fact(n: u64, p: u64, fact: &Vec<u64>) -> (u64, u64) {
    if n == 0 {
        (1, 0)
    } else {
        let (a, b) = mod_fact(n / p, p, fact);
        let e = b + n / p;

        if n / p % 2 != 0 {
            (a * (p - fact[(n % p) as usize]) % p, e)
        } else {
            (a * fact[(n % p) as usize] % p, e)
        }
    }
}

fn mod_comb(n: u64, k: u64, p: u64, fact: &Vec<u64>) -> u64 {
    if n < k {
        0
    } else {
        let (a1, e1) = mod_fact(n, p, fact);
        let (a2, e2) = mod_fact(k, p, fact);
        let (a3, e3) = mod_fact(n - k, p, fact);

        if e1 > e2 + e3 {
            0
        } else {
            a1 * mod_inverse(a2 * a3 % p, p) % p
        }
    }
}

const M: u64 = 1000000007;

fn main() {
    let (gx, gy, k): (i64, i64, usize) = util::get3();
    let xyn: Vec<(i64, i64, usize)> = (0..k).map(|_| util::get3()).collect();

    let fact = fact_table(100000, M);
    let mut stack: Vec<(i64, i64, [usize; 5])> = Vec::new();
    stack.push((0, 0, [0; 5]));
    let mut ans = if gx == 0 && gy == 0 { 1 } else { 0 };

    for i in 0..k {
        let (x, y, n) = xyn[i];
        let mut next = stack.clone();
        for j in 1..n + 1 {
            let dx = x * j as i64;
            let dy = y * j as i64;
            for &(cx, cy, nums) in &stack {
                let mut cpy = nums.clone();
                cpy[i] = j;
                let nx = cx + dx;
                let ny = cy + dy;
                if nx == gx && ny == gy {
                    let mut m = cpy.iter().sum::<usize>();
                    let mut p = 1;
                    for l in 0..i + 1 {
                        p = p * mod_comb(m as u64, cpy[l] as u64, M, &fact) % M;
                        m -= cpy[l];
                    }
                    ans = (ans + p) % M;
                }
                next.push((nx, ny, cpy));
            }
        }
        stack = next;
    }

    println!("{}", ans);
}
0