結果

問題 No.626 Randomized 01 Knapsack
ユーザー koba-e964koba-e964
提出日時 2021-09-28 15:08:58
言語 Rust
(1.77.0)
結果
TLE  
実行時間 -
コード長 2,516 bytes
コンパイル時間 1,137 ms
コンパイル使用メモリ 158,316 KB
実行使用メモリ 8,524 KB
最終ジャッジ日時 2023-09-22 04:46:59
合計ジャッジ時間 4,976 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,524 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 3 ms
4,380 KB
testcase_08 AC 102 ms
4,380 KB
testcase_09 AC 6 ms
4,380 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::*;
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, ( $($t:tt),* )) => { ($(read_value!($next, $t)),*) };
    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

trait Change { fn chmax(&mut self, x: Self); fn chmin(&mut self, x: Self); }
impl<T: PartialOrd> Change for T {
    fn chmax(&mut self, x: T) { if *self < x { *self = x; } }
    fn chmin(&mut self, x: T) { if *self > x { *self = x; } }
}

fn main() {
    // In order to avoid potential stack overflow, spawn a new thread.
    let stack_size = 104_857_600; // 100 MB
    let thd = std::thread::Builder::new().stack_size(stack_size);
    thd.spawn(|| solve()).unwrap().join().unwrap();
}

fn dfs(vw: &[(i64, i64)], pos: usize, vsum: i64, wsum: i64, lim: i64, acc: i64, ma: &mut i64) {
    if *ma >= acc + vsum {
        return;
    }
    if lim >= wsum {
        ma.chmax(acc + vsum);
        return;
    }
    ma.chmax(acc);
    if pos >= vw.len() {
        return;
    }
    let (v, w) = vw[pos];
    let rat = v as f64 / w as f64;
    let prospect = lim as f64 * rat * 1.000;
    if prospect <= (*ma - acc) as f64 {
        return;
    }
    if lim >= w {
        dfs(vw, pos + 1, vsum - v, wsum - w, lim - w, acc + v, ma);
    }
    dfs(vw, pos + 1, vsum - v, wsum - w, lim, acc, ma);
}

fn solve() {
    input! {
        n: usize, lim: i64,
        vw: [(i64, i64); n],
    }
    let mut vw = vw;
    vw.sort_by_key(|&(v, w)| -v * 1_000_000 / w);
    let mut ma = 0;
    let mut vsum = 0;
    let mut wsum = 0;
    for i in 0..n {
        vsum += vw[i].0;
        wsum += vw[i].1;
    }
    dfs(&vw, 0, vsum, wsum, lim, 0, &mut ma);
    println!("{}", ma);
}
0