結果
| 問題 | No.2232 Miser's Gift | 
| コンテスト | |
| ユーザー |  otamay6 | 
| 提出日時 | 2023-03-03 21:46:46 | 
| 言語 | Rust (1.83.0 + proconio) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 2,617 bytes | 
| コンパイル時間 | 12,555 ms | 
| コンパイル使用メモリ | 401,820 KB | 
| 実行使用メモリ | 6,948 KB | 
| 最終ジャッジ日時 | 2024-09-17 22:40:27 | 
| 合計ジャッジ時間 | 16,960 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | WA * 55 | 
コンパイルメッセージ
warning: unused imports: `BufReader`, `Write`
 --> src/main.rs:1:15
  |
1 | use std::io::{BufReader, Write};
  |               ^^^^^^^^^  ^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default
warning: variable does not need to be mutable
  --> src/main.rs:8:13
   |
8  |           let mut s = {
   |               ----^
   |               |
   |               help: remove this `mut`
...
80 | /     input!{
81 | |         n: usize,
82 | |         w: usize,
83 | |         p: [(usize, u64); n],
84 | |     }
   | |_____- in this macro invocation
   |
   = note: `#[warn(unused_mut)]` on by default
   = note: this warning originates in the macro `input` (in Nightly builds, run with -Z macro-backtrace for more info)
            
            ソースコード
use std::io::{BufReader, Write};
macro_rules! input {
    (source = $s:expr, $($r:tt)*) => {
        let mut iter = $s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
    ($($r:tt)*) => {
        let mut s = {
            use std::io::Read;
            let mut s = String::new();
            std::io::stdin().read_to_string(&mut s).unwrap();
            s
        };
        let mut iter = s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
}
macro_rules! input_inner {
    ($iter:expr) => {};
    ($iter:expr, ) => {};
    ($iter:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($iter, $t);
        input_inner!{$iter $($r)*}
    };
}
macro_rules! read_value {
    ($iter:expr, ( $($t:tt),* )) => {
        ( $(read_value!($iter, $t)),* )
    };
    ($iter:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>()
    };
    ($iter:expr, chars) => {
        read_value!($iter, String).chars().collect::<Vec<char>>()
    };
    ($iter:expr, usize1) => {
        read_value!($iter, usize) - 1
    };
    ($iter:expr, $t:ty) => {
        $iter.next().unwrap().parse::<$t>().expect("Parse error")
    };
}
/// 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(" ");
}
fn main(){
    println!("{}", solve());
}
fn solve()->String{
    let mut ans= String::new();
    input!{
        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;
    for x in 1..=w {
        concat_newline(&mut ans, (dp[w] - dp[w-x] + 1).to_string().as_str());
    }
    return ans;
}
            
            
            
        