結果

問題 No.2364 Knapsack Problem
ユーザー naut3naut3
提出日時 2023-07-01 03:06:46
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 2,208 bytes
コンパイル時間 3,336 ms
コンパイル使用メモリ 160,300 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-21 20:49:01
合計ジャッジ時間 4,422 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 WA -
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 WA -
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused `Result` that must be used
  --> Main.rs:55:5
   |
55 |     writeln!(out, "{}", ans);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: this `Result` may be an `Err` variant, which should be handled
   = note: `#[warn(unused_must_use)]` on by default
   = note: this warning originates in the macro `writeln` (in Nightly builds, run with -Z macro-backtrace for more info)

warning: 1 warning emitted

ソースコード

diff #

#![allow(non_snake_case, unused_imports)]
use std::io::{self, prelude::*};
use std::str;

fn main() {
    let (stdin, stdout) = (io::stdin(), io::stdout());
    let mut scan = Scanner::new(stdin.lock());
    let mut out = io::BufWriter::new(stdout.lock());

    macro_rules! input {
        ($T: ty) => {
            scan.token::<$T>()
        };
    }

    let N = input!(usize);
    let M = input!(usize);
    let W = input!(isize);

    let A = (0..N).map(|_| input!(isize)).collect::<Vec<_>>();
    let B = (0..N).map(|_| input!(isize)).collect::<Vec<_>>();
    let C = (0..M).map(|_| input!(isize)).collect::<Vec<_>>();
    let D = (0..M).map(|_| input!(isize)).collect::<Vec<_>>();

    let mut ans = 0;

    for s in 0..(1 << N) {
        let mut sum_w = 0;
        let mut sum_v = 0;

        for i in 0..N {
            if (s >> i) & 1 == 1 {
                sum_w += A[i];
                sum_v += B[i];
            }
        }

        for t in 0..(1 << M) {
            let mut Sum_w = sum_w;
            let mut Sum_v = sum_v;

            for i in 0..M {
                if (t >> i) & 1 == 1 {
                    Sum_w -= C[i];
                    Sum_v -= D[i];
                }
            }

            if Sum_w >= 0 && Sum_w <= W {
                ans = std::cmp::max(ans, Sum_v);
            }
        }
    }

    writeln!(out, "{}", ans);
}

struct Scanner<R> {
    reader: R,
    buf_str: Vec<u8>,
    buf_iter: str::SplitWhitespace<'static>,
}
impl<R: BufRead> Scanner<R> {
    fn new(reader: R) -> Self {
        Self {
            reader,
            buf_str: vec![],
            buf_iter: "".split_whitespace(),
        }
    }
    fn token<T: str::FromStr>(&mut self) -> T {
        loop {
            if let Some(token) = self.buf_iter.next() {
                return token.parse().ok().expect("Failed parse");
            }
            self.buf_str.clear();
            self.reader
                .read_until(b'\n', &mut self.buf_str)
                .expect("Failed read");
            self.buf_iter = unsafe {
                let slice = str::from_utf8_unchecked(&self.buf_str);
                std::mem::transmute(slice.split_whitespace())
            }
        }
    }
}
0