結果

問題 No.2730 Two Types Luggage
ユーザー かもめのうでかもめのうで
提出日時 2024-04-20 00:57:58
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 13,055 ms
コンパイル使用メモリ 396,988 KB
実行使用メモリ 29,352 KB
最終ジャッジ日時 2024-10-11 19:45:51
合計ジャッジ時間 19,843 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 2 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 118 ms
22,680 KB
testcase_12 AC 242 ms
28,832 KB
testcase_13 AC 98 ms
18,864 KB
testcase_14 AC 125 ms
22,684 KB
testcase_15 AC 116 ms
7,276 KB
testcase_16 AC 44 ms
9,784 KB
testcase_17 AC 155 ms
27,888 KB
testcase_18 AC 140 ms
25,968 KB
testcase_19 AC 12 ms
5,248 KB
testcase_20 AC 56 ms
11,760 KB
testcase_21 AC 112 ms
21,644 KB
testcase_22 AC 155 ms
28,720 KB
testcase_23 AC 19 ms
5,248 KB
testcase_24 AC 66 ms
13,220 KB
testcase_25 AC 120 ms
23,112 KB
testcase_26 AC 32 ms
7,608 KB
testcase_27 AC 113 ms
21,676 KB
testcase_28 AC 62 ms
12,496 KB
testcase_29 AC 138 ms
26,148 KB
testcase_30 AC 100 ms
5,248 KB
testcase_31 AC 93 ms
18,648 KB
testcase_32 AC 82 ms
16,032 KB
testcase_33 AC 251 ms
29,304 KB
testcase_34 AC 252 ms
29,352 KB
testcase_35 AC 245 ms
29,196 KB
testcase_36 AC 246 ms
29,204 KB
testcase_37 AC 244 ms
29,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(unused)]
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_by(|a, b| b.cmp(a));
    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