結果

問題 No.2730 Two Types Luggage
ユーザー maguroflymagurofly
提出日時 2024-04-19 21:37:17
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 1,200 bytes
コンパイル時間 17,303 ms
コンパイル使用メモリ 379,504 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-10-11 14:21:22
合計ジャッジ時間 23,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 7 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 2 ms
5,248 KB
testcase_10 AC 5 ms
5,248 KB
testcase_11 AC 120 ms
15,104 KB
testcase_12 AC 253 ms
19,328 KB
testcase_13 AC 94 ms
12,288 KB
testcase_14 AC 120 ms
15,104 KB
testcase_15 AC 125 ms
5,504 KB
testcase_16 AC 43 ms
6,656 KB
testcase_17 AC 152 ms
18,560 KB
testcase_18 AC 138 ms
17,024 KB
testcase_19 AC 12 ms
5,248 KB
testcase_20 AC 54 ms
7,936 KB
testcase_21 AC 114 ms
14,208 KB
testcase_22 AC 154 ms
19,072 KB
testcase_23 AC 19 ms
5,248 KB
testcase_24 AC 66 ms
9,088 KB
testcase_25 AC 122 ms
15,104 KB
testcase_26 AC 32 ms
5,504 KB
testcase_27 AC 115 ms
14,208 KB
testcase_28 AC 60 ms
8,576 KB
testcase_29 AC 139 ms
17,408 KB
testcase_30 AC 110 ms
5,248 KB
testcase_31 AC 92 ms
12,160 KB
testcase_32 AC 82 ms
10,880 KB
testcase_33 AC 259 ms
19,456 KB
testcase_34 AC 257 ms
19,456 KB
testcase_35 AC 256 ms
19,456 KB
testcase_36 AC 255 ms
19,456 KB
testcase_37 AC 257 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(dead_code, unused_imports, unused_macros, non_snake_case)]

fn main() {
	let [N, M, W] = read_words::<usize>()[..] else { return };
	let mut A = read_words::<usize>();
	A.sort();
	A.push(0);
	A.reverse();
	for i in 0 .. N {
		A[i + 1] += A[i];
	}
	let B = read_words::<usize>();
	let C = read_words::<usize>();
	
	let mut ans = 0;
	for bits in 0 .. 1 << M {
		let mut value_sum = 0;
		let mut weight_sum = 0;
		for j in 0 .. M {
			if bits & 1 << j != 0 {
				weight_sum += B[j];
				value_sum += C[j];
			}
		}
		if weight_sum > W {
			continue;
		}
		value_sum += A[N.min(W - weight_sum)];
		ans = ans.max(value_sum);
	}
	
	println!("{ans}");
}

type Int = i64;
const MOD: Int = 1_000_000_007;
const INF: Int = 1_000_000_000;
const YESNO: [&'static str; 2] = ["Yes", "No"];

fn read_line() -> String { let mut buf = String::new(); std::io::stdin().read_line(&mut buf).ok(); buf }
fn read_words<T: std::str::FromStr>() -> Vec<T> where T::Err: std::fmt::Debug { read_line().split_whitespace().map(|x| T::from_str(x).unwrap() ).collect() }

fn yes() { println!("{}", YESNO[0]); }
fn no() { println!("{}", YESNO[1]); }
fn yesno(c: bool) { println!("{}", if c { YESNO[0] } else { YESNO[1] }); }
0