結果
問題 | No.1037 exhausted |
ユーザー | tonyu0 |
提出日時 | 2020-04-25 14:13:29 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,357 bytes |
コンパイル時間 | 15,357 ms |
コンパイル使用メモリ | 378,364 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 01:18:51 |
合計ジャッジ時間 | 15,347 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
ソースコード
use std::cmp::*; use std::io::*; const INF: usize = 40; fn main() { let mut s: String = String::new(); std::io::stdin().read_to_string(&mut s).ok(); let mut itr = s.trim().split_whitespace(); let n: usize = itr.next().unwrap().parse().unwrap(); let v: usize = itr.next().unwrap().parse().unwrap(); let l: usize = itr.next().unwrap().parse().unwrap(); let mut a = Vec::new(); a.push((0, 0, 0)); for _ in 0..n { a.push(( itr.next().unwrap().parse().unwrap(), itr.next().unwrap().parse().unwrap(), itr.next().unwrap().parse().unwrap(), )); } a.push((l, 0, 0)); let mut dp: Vec<Vec<usize>> = vec![vec![INF; 11]; 11]; dp[0][v] = 0; for i in 0..n + 1 { for j in 0..v + 1 { let k = min(j + a[i].1, v); let diff = a[i + 1].0 - a[i].0; if k >= diff { dp[i + 1][k - diff] = min(dp[i + 1][k - diff], dp[i][j] + a[i].2); } if j >= diff { dp[i + 1][j - diff] = min(dp[i + 1][j - diff], dp[i][j]); } } } let mut ans = INF; for i in 0..v + 1 { if dp[n + 1][i] != INF { ans = min(ans, dp[n + 1][i]); } } if ans == INF { println!("-1",) } else { println!("{}", ans); } }