結果
問題 | No.626 Randomized 01 Knapsack |
ユーザー | koba-e964 |
提出日時 | 2021-09-28 15:24:35 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,573 bytes |
コンパイル時間 | 11,188 ms |
コンパイル使用メモリ | 379,616 KB |
実行使用メモリ | 13,752 KB |
最終ジャッジ日時 | 2024-07-07 21:48:50 |
合計ジャッジ時間 | 15,556 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 16 ms
5,376 KB |
testcase_07 | AC | 533 ms
5,376 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
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 | -- | - |
ソースコード
#[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, mut vsum: i64, mut 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; } for i in pos..vw.len() { let (v, w) = vw[pos]; vsum -= v; wsum -= w; if lim >= w { dfs(vw, i + 1, vsum, wsum, lim - w, acc + v, 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); }