結果
問題 | No.951 【本日限定】1枚頼むともう1枚無料! |
ユーザー | koba-e964 |
提出日時 | 2020-01-01 18:55:45 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 68 ms / 2,000 ms |
コード長 | 2,994 bytes |
コンパイル時間 | 15,939 ms |
コンパイル使用メモリ | 378,324 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-22 15:06:11 |
合計ジャッジ時間 | 18,950 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 14 ms
5,248 KB |
testcase_13 | AC | 48 ms
5,248 KB |
testcase_14 | AC | 9 ms
5,248 KB |
testcase_15 | AC | 8 ms
5,248 KB |
testcase_16 | AC | 10 ms
5,248 KB |
testcase_17 | AC | 13 ms
5,248 KB |
testcase_18 | AC | 1 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | AC | 1 ms
5,248 KB |
testcase_24 | AC | 68 ms
5,248 KB |
testcase_25 | AC | 68 ms
5,248 KB |
testcase_26 | AC | 65 ms
5,248 KB |
testcase_27 | AC | 66 ms
5,248 KB |
testcase_28 | AC | 50 ms
5,248 KB |
testcase_29 | AC | 50 ms
5,248 KB |
testcase_30 | AC | 1 ms
5,248 KB |
testcase_31 | AC | 1 ms
5,248 KB |
testcase_32 | AC | 1 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 3 ms
5,248 KB |
testcase_35 | AC | 68 ms
5,248 KB |
testcase_36 | AC | 68 ms
5,248 KB |
testcase_37 | AC | 68 ms
5,248 KB |
testcase_38 | AC | 68 ms
5,248 KB |
testcase_39 | AC | 68 ms
5,248 KB |
testcase_40 | AC | 65 ms
5,248 KB |
testcase_41 | AC | 65 ms
5,248 KB |
testcase_42 | AC | 65 ms
5,248 KB |
testcase_43 | AC | 65 ms
5,248 KB |
testcase_44 | AC | 65 ms
5,248 KB |
testcase_45 | AC | 65 ms
5,248 KB |
testcase_46 | AC | 51 ms
5,248 KB |
testcase_47 | AC | 50 ms
5,248 KB |
testcase_48 | AC | 50 ms
5,248 KB |
testcase_49 | AC | 50 ms
5,248 KB |
testcase_50 | AC | 50 ms
5,248 KB |
testcase_51 | AC | 50 ms
5,248 KB |
testcase_52 | AC | 56 ms
5,248 KB |
testcase_53 | AC | 68 ms
5,248 KB |
testcase_54 | AC | 31 ms
5,248 KB |
ソースコード
#[allow(unused_imports)] use std::cmp::*; #[allow(unused_imports)] use std::collections::*; use std::io::{Write, BufWriter}; // 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, chars) => { read_value!($next, String).chars().collect::<Vec<char>>() }; ($next:expr, usize1) => { read_value!($next, usize) - 1 }; ($next:expr, [ $t:tt ]) => {{ let len = read_value!($next, usize); (0..len).map(|_| read_value!($next, $t)).collect::<Vec<_>>() }}; ($next:expr, $t:ty) => { $next().parse::<$t>().expect("Parse error") }; } #[allow(unused)] macro_rules! debug { ($($format:tt)*) => (write!(std::io::stderr(), $($format)*).unwrap()); } #[allow(unused)] macro_rules! debugln { ($($format:tt)*) => (writeln!(std::io::stderr(), $($format)*).unwrap()); } fn solve() { let out = std::io::stdout(); let mut out = BufWriter::new(out.lock()); macro_rules! puts { ($($format:tt)*) => (write!(out,$($format)*).unwrap()); } input! { n: usize, k: usize, pd: [(usize, i64); n], } let mut pd = pd; pd.sort(); const INF: i64 = 1 << 50; let mut dp = vec![[-INF; 2]; k + 1]; dp[0] = [0, 0]; // (j, 0) -> (j, 1), (j, 1) -> (j + p, 0) の遷移を一挙にやりたい。 // (j, l) が大きくなる方向にしか遷移しないため、 // (j, l) の辞書順の逆に遷移させればよい. for i in 0..n { let (p, d) = pd[i]; for j in (0..k + 1).rev() { if j + p <= k { dp[j + p][0] = max(dp[j + p][0], dp[j][1] + d); } dp[j][1] = max(dp[j][1], dp[j][0] + d); } } let mut ma = 0; for i in 0..k + 1 { ma = max(ma, dp[i][0]); } puts!("{}\n", ma); } 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(); }