結果

問題 No.2730 Two Types Luggage
ユーザー Yukino DX.Yukino DX.
提出日時 2024-04-19 21:41:34
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 828 bytes
コンパイル時間 15,102 ms
コンパイル使用メモリ 381,416 KB
実行使用メモリ 27,284 KB
最終ジャッジ日時 2024-10-11 14:30:00
合計ジャッジ時間 19,621 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 6 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 0 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 5 ms
6,820 KB
testcase_11 AC 115 ms
20,724 KB
testcase_12 AC 236 ms
26,812 KB
testcase_13 AC 92 ms
16,776 KB
testcase_14 AC 116 ms
20,672 KB
testcase_15 AC 112 ms
6,816 KB
testcase_16 AC 42 ms
8,764 KB
testcase_17 AC 147 ms
25,948 KB
testcase_18 AC 134 ms
23,788 KB
testcase_19 AC 12 ms
6,820 KB
testcase_20 AC 54 ms
10,748 KB
testcase_21 AC 110 ms
19,752 KB
testcase_22 AC 150 ms
26,764 KB
testcase_23 AC 19 ms
6,820 KB
testcase_24 AC 64 ms
12,256 KB
testcase_25 AC 119 ms
20,968 KB
testcase_26 AC 31 ms
7,092 KB
testcase_27 AC 110 ms
19,660 KB
testcase_28 AC 58 ms
11,596 KB
testcase_29 AC 136 ms
24,208 KB
testcase_30 AC 98 ms
6,820 KB
testcase_31 AC 90 ms
16,596 KB
testcase_32 AC 80 ms
15,032 KB
testcase_33 AC 237 ms
27,264 KB
testcase_34 AC 238 ms
27,284 KB
testcase_35 AC 239 ms
27,228 KB
testcase_36 AC 239 ms
27,184 KB
testcase_37 AC 239 ms
27,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(unused_imports)]
//use itertools::{iproduct, Itertools};
use proconio::input;
use proconio::marker::*;
use std::collections::*;

fn main() {
    input! {
        n:usize,
        m:usize,
        w:usize,
        mut a:[usize;n],
        b:[usize;m],
        c:[usize;m],
    }

    a.sort_by(|a, b| b.cmp(a));
    let mut cum_a = vec![0;n+1];
    for i in 0..n{
        cum_a[i+1]=cum_a[i]+a[i];
    }

    let mut ans = 0;
    for i in 0..1 << m {
        let mut sum_v = 0;
        let mut sum_w = 0;
        for j in 0..m {
            if i & (1 << j) == 0 {
                continue;
            }

            sum_v += c[j];
            sum_w += b[j];
        }

        if sum_w <= w {
            sum_v += cum_a[(w - sum_w).min(n)];
            ans = ans.max(sum_v);
        }
    }

    println!("{}", ans);
}
0