結果

問題 No.2730 Two Types Luggage
ユーザー かもめのうでかもめのうで
提出日時 2024-04-20 01:00:37
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 14,759 ms
コンパイル使用メモリ 378,844 KB
実行使用メモリ 37,128 KB
最終ジャッジ日時 2024-10-11 19:48:17
合計ジャッジ時間 19,707 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 126 ms
28,568 KB
testcase_12 AC 263 ms
36,492 KB
testcase_13 AC 101 ms
23,460 KB
testcase_14 AC 126 ms
28,548 KB
testcase_15 AC 129 ms
8,808 KB
testcase_16 AC 46 ms
11,800 KB
testcase_17 AC 161 ms
35,368 KB
testcase_18 AC 148 ms
32,832 KB
testcase_19 AC 12 ms
5,248 KB
testcase_20 AC 57 ms
14,324 KB
testcase_21 AC 119 ms
27,148 KB
testcase_22 AC 164 ms
36,396 KB
testcase_23 AC 20 ms
5,248 KB
testcase_24 AC 68 ms
16,356 KB
testcase_25 AC 128 ms
28,872 KB
testcase_26 AC 33 ms
9,148 KB
testcase_27 AC 119 ms
27,176 KB
testcase_28 AC 62 ms
15,568 KB
testcase_29 AC 147 ms
32,944 KB
testcase_30 AC 111 ms
5,248 KB
testcase_31 AC 96 ms
23,124 KB
testcase_32 AC 85 ms
20,008 KB
testcase_33 AC 266 ms
36,868 KB
testcase_34 AC 266 ms
37,128 KB
testcase_35 AC 265 ms
37,000 KB
testcase_36 AC 266 ms
37,000 KB
testcase_37 AC 266 ms
36,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(unused)]
// use itertools::Itertools;
use proconio::*;
use std::collections::*;

fn main() {
    input! {
        n: usize, m: usize, w: usize,
        mut a: [usize; n],
        b: [usize; m],
        c: [usize; m]
    }
    a.sort();
    let a = a.iter().rev().collect::<Vec<&usize>>();
    let mut rui = vec![0];
    for ai in a {
        rui.push(rui[rui.len()-1]+ai)
    }

    let mut ans = 0;
    for bit in 0..1<<m {
        let mut val_cnt = 0;
        let mut weight_cnt = 0;
        for i in 0..m {
            if bit&1<<i > 0 {
                val_cnt += c[i];
                weight_cnt += b[i];
            }
        }
        if weight_cnt > w {
            continue;
        }
        val_cnt += rui[(w-weight_cnt).min(n)];
        ans = ans.max(val_cnt)
    }
    println!("{ans}")
}
0