結果

問題 No.2232 Miser's Gift
ユーザー otamay6otamay6
提出日時 2023-03-03 21:41:42
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 5,370 bytes
コンパイル時間 12,693 ms
コンパイル使用メモリ 406,628 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-17 22:35:22
合計ジャッジ時間 17,375 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::{BufReader, Write};
pub use proconio::input;

/// https://maguro.dev/debug-macro/
#[allow(unused_macros)]
macro_rules! debug {
    ($($a:expr),* $(,)*) => {
        #[cfg(debug_assertions)]
        eprintln!(concat!($("| ", stringify!($a), "={:?} "),*, "|"), $(&$a),*);
        #[cfg(debug_assertions)]
        std::io::stderr().flush().unwrap();
    };
}

#[allow(dead_code)]
fn concat_newline(chg: &mut String, additional: &str){
    chg.push_str(additional);
    chg.push_str("\n");
}

#[allow(dead_code)]
fn concat_whitespace(chg: &mut String, additional: &str){
    chg.push_str(additional);
    chg.push_str(" ");
}

#[proconio::fastout]
fn main(){
    let stdin = std::io::stdin();
    let mut source = proconio::source::auto::AutoSource::new(BufReader::new(stdin.lock()));
    println!("{}", solve(&mut source));
    std::io::stdout().flush().unwrap();
}

#[cfg(test)]
mod tests{
    use super::*;

    #[test]
    fn handcase(){
        let problem: &str = test_info::HANDCASE_INPUT;
        if problem == String::new() {
            return;
        }
        let output: String = naive_ans(&mut proconio::source::auto::AutoSource::from(problem));
        if output == String::new() {
            return;
        }
        assert_eq!(
            output,
            solve(&mut proconio::source::auto::AutoSource::from(problem))
        )
    }

    #[test]
    fn sample_1(){
        let problem = test_info::SAMPLE_INPUT_1;
        let output = test_info::SAMPLE_OUTPUT_1;
        if problem == String::new() {
            return;
        }
        assert_eq!(
            output.to_string(),
            solve(&mut proconio::source::auto::AutoSource::from(problem))
        )
    }

    #[test]
    fn sample_2(){
        let problem = test_info::SAMPLE_INPUT_2;
        let output = test_info::SAMPLE_OUTPUT_2;
        if problem == String::new() {
            return;
        }
        assert_eq!(
            output.to_string(),
            solve(&mut proconio::source::auto::AutoSource::from(problem))
        )
    }

    #[test]
    fn sample_3(){
        let problem = test_info::SAMPLE_INPUT_3;
        let output = test_info::SAMPLE_OUTPUT_3;
        if problem == String::new() {
            return;
        }
        assert_eq!(
            output.to_string(),
            solve(&mut proconio::source::auto::AutoSource::from(problem))
        )
    }

    #[test]
    fn naive_test_sample_1(){
        let problem = test_info::SAMPLE_INPUT_1;
        if problem == String::new() {
            return;
        }
        let output: String = naive_ans(&mut proconio::source::auto::AutoSource::from(problem));
        if output == String::new() {
            return;
        }
        assert_eq!(
            output.to_string(),
            solve(&mut proconio::source::auto::AutoSource::from(problem))
        )
    }

    #[test]
    fn naive_test_sample_2(){
        let problem = test_info::SAMPLE_INPUT_2;
        if problem == String::new() {
            return;
        }
        let output: String = naive_ans(&mut proconio::source::auto::AutoSource::from(problem));
        if output == String::new() {
            return;
        }
        assert_eq!(
            output.to_string(),
            solve(&mut proconio::source::auto::AutoSource::from(problem))
        )
    }

    #[test]
    fn naive_test_sample_3(){
        let problem = test_info::SAMPLE_INPUT_3;
        if problem == String::new() {
            return;
        }
        let output: String = naive_ans(&mut proconio::source::auto::AutoSource::from(problem));
        if output == String::new() {
            return;
        }
        assert_eq!(
            output.to_string(),
            solve(&mut proconio::source::auto::AutoSource::from(problem))
        )
    }

    fn naive_ans<T: std::io::Read>(mut source: &mut proconio::source::auto::AutoSource<BufReader<T>>)->String{
        input!{
            from &mut source,
        }
        return "".to_string();
    }
}

/// コピー情報をそのまま貼り付けてテストできる
#[cfg(test)]
mod test_info{
pub const HANDCASE_INPUT: &str = "";
pub const SAMPLE_INPUT_1: &str = "3 5
1 2
2 3
3 5
";
pub const SAMPLE_OUTPUT_1: &str = "2
4
6
7
9
";
pub const SAMPLE_INPUT_2: &str = "3 5
10 10
10 100
100 100
";
pub const SAMPLE_OUTPUT_2: &str = "1
1
1
1
1
";
pub const SAMPLE_INPUT_3: &str = "4 10
1 1
2 3
4 5
8 9
";
pub const SAMPLE_OUTPUT_3: &str = "3
4
4
5
7
8
9
10
12
13
";
}

fn solve<T: std::io::Read>(mut source: &mut proconio::source::auto::AutoSource<BufReader<T>>)->String{
    let mut ans= String::new();
    input!{
        from &mut source,
        n: usize,
        w: usize,
        p: [(usize, u64); n],
    }
    // maxを更新できる価値を与える
    let mut from: Vec<u64> = Vec::new();
    let mut to: Vec<u64> = Vec::new();
    from.resize(w+1,0);
    to.resize(w+1, 0);
    for i in 0..n {
        let (weight, value) = p[i];
        for j in 0..=w {
            if j > 0 {
                to[j] = to[j-1].max(from[j]);
            }
            if j >= weight {
                to[j] = std::cmp::max(to[j], from[j-weight] + value);
            }
        }
        std::mem::swap(&mut from, &mut to);
    }
    let dp = from;
    debug!(dp);
    for x in 1..=w {
        concat_newline(&mut ans, (dp[w] - dp[w-x] + 1).to_string().as_str());
    }
    return ans;
}
0