結果
問題 | No.914 Omiyage |
ユーザー | phspls |
提出日時 | 2020-02-08 16:22:46 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,951 bytes |
コンパイル時間 | 16,965 ms |
コンパイル使用メモリ | 405,796 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-25 08:51:25 |
合計ジャッジ時間 | 17,053 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,940 KB |
ソースコード
use std::io::Read; use std::collections::HashSet; fn main() { let mut all_data = String::new(); std::io::stdin().read_to_string(&mut all_data).ok(); let mut all_data = all_data.trim().split('\n').map(|s| s.trim()); let nmk: Vec<usize> = all_data.next().unwrap().split_whitespace().map(|s| s.parse().unwrap()).collect(); let n = nmk[0]; let m = nmk[1]; let k = nmk[2]; let a: Vec<Vec<usize>> = all_data.take(n).map(|s| s.split_whitespace().map(|t| t.parse().unwrap()).collect::<Vec<usize>>()).collect(); let mut min_sum: usize= a.iter().map(|i| i[0]).sum(); let mut max_sum: usize= a.iter().map(|i| i[m-1]).sum(); let mut result_list: Vec<usize> = vec![]; for i in 0..n { min_sum -= a[i][0]; max_sum -= a[i][m-1]; let mut temp_result_list: Vec<usize> = vec![]; let mut temp_result_set: HashSet<usize> = HashSet::new(); for j in 0..m { let adder = a[i][j]; for val in result_list.iter().rev() { if min_sum + val + adder > k { //nothing to do } else if temp_result_set.contains(&(val + adder)) { //nothing to do } else { temp_result_list.push(val + adder); temp_result_set.insert(val + adder); if max_sum + val + adder <= k { break; } } } if i == 0 { if adder > k { //nothing to do } else { temp_result_list.push(adder); temp_result_set.insert(adder); } } } temp_result_list.sort(); result_list = temp_result_list; } if result_list.is_empty() { println!("{}", -1); } else { println!("{}", k - result_list[result_list.len() - 1]); } }