結果
問題 | No.974 最後の日までに |
ユーザー | akakimidori |
提出日時 | 2020-02-12 12:47:10 |
言語 | Rust (1.77.0 + proconio) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,512 bytes |
コンパイル時間 | 15,938 ms |
コンパイル使用メモリ | 403,088 KB |
実行使用メモリ | 813,088 KB |
最終ジャッジ日時 | 2024-10-04 01:46:06 |
合計ジャッジ時間 | 20,739 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
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 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
ソースコード
//https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 より macro_rules! input { (source = $s:expr, $($r:tt)*) => { let mut iter = $s.split_whitespace(); input_inner!{iter, $($r)*} }; ($($r:tt)*) => { let s = { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); s }; let mut iter = s.split_whitespace(); input_inner!{iter, $($r)*} }; } macro_rules! input_inner { ($iter:expr) => {}; ($iter:expr, ) => {}; ($iter:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($iter, $t); input_inner!{$iter $($r)*} }; } macro_rules! read_value { ($iter:expr, ( $($t:tt),* )) => { ( $(read_value!($iter, $t)),* ) }; ($iter:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>() }; ($iter:expr, chars) => { read_value!($iter, String).chars().collect::<Vec<char>>() }; ($iter:expr, usize1) => { read_value!($iter, usize) - 1 }; ($iter:expr, $t:ty) => { $iter.next().unwrap().parse::<$t>().expect("Parse error") }; } // fn run() { input! { w: usize, p: [(i64, i64, i64); w], } let mut dp = vec![vec![]; 3];// 最後の行動が学校、アルバイト、デート dp[0].push((0, 0)); dp[1].push((p[0].0, 0)); for (a, b, c) in p.into_iter().skip(1) { let mut next = vec![vec![]; 3]; for &(p, f) in dp[0].iter() { next[2].push((p - c, f + b)); } for &(p, f) in dp[1].iter() { next[0].push((p, f)); next[1].push((p + a, f)); } for &(p, f) in dp[2].iter() { next[0].push((p, f)); next[1].push((p + a, f)); } for next in next.iter_mut() { next.sort(); let mut a: Vec<(i64, i64)> = vec![]; for &(p, f) in next.iter() { if let Some(&(q, g)) = a.last() { if q <= p && g <= f { a.pop(); } } a.push((p, f)); } *next = a; } dp = next; } let mut ans = 0; for dp in dp { for (p, f) in dp { if p >= 0 { ans = std::cmp::max(ans, f); } } } println!("{}", ans); } fn main() { run(); }