結果

問題 No.472 平均順位
ユーザー ngtkanangtkana
提出日時 2023-04-06 00:37:07
言語 Rust
(1.77.0)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 2,944 bytes
コンパイル時間 1,086 ms
コンパイル使用メモリ 167,660 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-10 02:10:37
合計ジャッジ時間 3,595 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 0 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 15 ms
6,940 KB
testcase_10 AC 10 ms
6,944 KB
testcase_11 AC 46 ms
6,948 KB
testcase_12 AC 33 ms
6,940 KB
testcase_13 AC 121 ms
6,944 KB
testcase_14 AC 440 ms
6,940 KB
testcase_15 AC 119 ms
6,940 KB
testcase_16 AC 502 ms
6,940 KB
testcase_17 AC 495 ms
6,940 KB
testcase_18 AC 32 ms
6,940 KB
testcase_19 AC 57 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::{
    convert::TryFrom,
    io::{stdin, BufRead},
    iter::once,
    u64::MAX,
};

use crate::cmpmore::CmpMore;

fn main() {
    let stdin = stdin();
    let mut stdin = stdin.lock().lines().map(Result::unwrap);
    let [n, p] = <[_; 2]>::try_from(
        stdin
            .next()
            .unwrap()
            .split_whitespace()
            .map(|x| x.parse::<usize>().unwrap())
            .collect::<Vec<_>>()
            .as_slice(),
    )
    .unwrap();
    let mut dp = vec![MAX; p + 1];
    dp[0] = 0;
    for _ in 0..n {
        let a = <[_; 4]>::try_from(
            stdin
                .next()
                .unwrap()
                .split_whitespace()
                .map(|x| x.parse::<u64>().unwrap())
                .chain(once(1))
                .collect::<Vec<_>>()
                .as_slice(),
        )
        .unwrap();
        let mut swp = vec![MAX; p + 1];
        for i in (0..=p).rev() {
            for (w, &v) in a.iter().enumerate() {
                if i + w <= p {
                    swp[i + w].change_min(dp[i].saturating_add(v));
                }
            }
        }
        dp = swp;
    }
    let ans = dp[p] as f64 / n as f64;
    println!("{}", ans);
}

// lg {{{
#[allow(dead_code)]
mod lg {
    #[macro_export]
    macro_rules! lg {
        (@contents $head:expr $(,)?) => {
            match $head {
                head => {
                    eprintln!(" {} = {:?}", stringify!($head), &head);
                }
            }
        };
        (@contents $head:expr $(,$tail:expr)+ $(,)?) => {
            match $head {
                head => {
                    eprint!(" {} = {:?},", stringify!($head), &head);
                }
            }
            $crate::lg!(@contents $($tail),*);
        };
        ($($expr:expr),* $(,)?) => {
            eprint!("[{}:{}]", file!(), line!());
            $crate::lg!(@contents $($expr),*)
        };
    }
}
// }}}
// cmpmore {{{
#[allow(dead_code)]
mod cmpmore {
    pub fn change_min<T: PartialOrd>(lhs: &mut T, rhs: T) {
        if *lhs > rhs {
            *lhs = rhs;
        }
    }
    pub fn change_max<T: PartialOrd>(lhs: &mut T, rhs: T) {
        if *lhs < rhs {
            *lhs = rhs;
        }
    }
    #[macro_export]
    macro_rules! change_min {
        ($lhs:expr, $rhs:expr) => {
            let rhs = $rhs;
            let lhs = $lhs;
            $crate::cmpmore::change_min(lhs, rhs);
        };
    }
    #[macro_export]
    macro_rules! change_max {
        ($lhs:expr, $rhs:expr) => {
            let rhs = $rhs;
            let lhs = $lhs;
            $crate::cmpmore::change_max(lhs, rhs);
        };
    }
    pub trait CmpMore: PartialOrd + Sized {
        fn change_min(&mut self, rhs: Self) {
            change_min(self, rhs)
        }
        fn change_max(&mut self, rhs: Self) {
            change_max(self, rhs)
        }
    }
    impl<T: PartialOrd + Sized> CmpMore for T {}
}
// }}}
0