結果

問題 No.288 貯金箱の仕事
ユーザー koba-e964koba-e964
提出日時 2017-01-10 23:03:13
言語 Rust
(1.83.0 + proconio)
結果
RE  
実行時間 -
コード長 2,036 bytes
コンパイル時間 13,000 ms
コンパイル使用メモリ 390,744 KB
実行使用メモリ 813,132 KB
最終ジャッジ日時 2024-12-18 01:00:46
合計ジャッジ時間 35,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
18,220 KB
testcase_01 AC 6 ms
8,920 KB
testcase_02 AC 8 ms
11,208 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 9 ms
11,264 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 34 ms
39,308 KB
testcase_09 RE -
testcase_10 AC 95 ms
105,056 KB
testcase_11 RE -
testcase_12 AC 84 ms
93,216 KB
testcase_13 RE -
testcase_14 AC 84 ms
90,796 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 67 ms
72,216 KB
testcase_18 RE -
testcase_19 AC 59 ms
65,152 KB
testcase_20 AC 35 ms
41,640 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 7 ms
8,832 KB
testcase_26 AC 7 ms
8,792 KB
testcase_27 AC 7 ms
8,832 KB
testcase_28 AC 7 ms
8,892 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 RE -
testcase_38 MLE -
testcase_39 RE -
testcase_40 RE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 RE -
testcase_45 MLE -
testcase_46 MLE -
testcase_47 MLE -
testcase_48 MLE -
testcase_49 AC 402 ms
430,868 KB
testcase_50 MLE -
testcase_51 RE -
testcase_52 MLE -
testcase_53 MLE -
testcase_54 MLE -
testcase_55 AC 9 ms
11,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::*;
#[allow(unused_imports)]
use std::collections::*;
use std::io::*;
#[allow(dead_code)]
fn getline() -> String {
    let mut ret = String::new();
    std::io::stdin().read_line(&mut ret).ok();
    return ret;
}
fn get_word() -> String {
    let mut stdin = std::io::stdin();
    let mut u8b: [u8; 1] = [0];
    loop {
        let mut buf: Vec<u8> = Vec::with_capacity(16);
        loop {
            let res = stdin.read(&mut u8b);
            if res.is_err() || res.ok().unwrap() == 0 || u8b[0] <= ' ' as u8 {
                break;
            } else {
                buf.push(u8b[0]);
            }
        }
        if buf.len() >= 1 {
            let ret = std::string::String::from_utf8(buf).unwrap();
            return ret;
        }
    }
}
fn parse<T: std::str::FromStr>(s: &str) -> T { s.parse::<T>().ok().unwrap() }

#[allow(dead_code)]
fn get<T: std::str::FromStr>() -> T { parse(&get_word()) }

const INF: i64 = 1 << 60;

fn solve(a: &[i64], v: i64) -> i64 {
    let n = a.len();
    const W: usize = 300000;
    let mut dp: Vec<Vec<i64>> = vec![vec![INF; W]; n + 1];
    dp[0][0] = 0;
    for i in 0 .. n {
        let cur = a[i] as usize;
        for j in 0 .. W {
            let mut mi = dp[i][j];
            if j >= cur {
                mi = min(mi, dp[i + 1][j - cur] + 1);
            }
            dp[i + 1][j] = mi;
        }
    }
    if v < W as i64 {
        return dp[n][v as usize];
    }
    let biggest = a[n - 1] as i64;
    let diff = (v + 1 - W as i64 + biggest - 1) / biggest * biggest;
    assert!(v - biggest < W as i64);
    return dp[n][(v - biggest) as usize] + diff / biggest;
}


fn main() {
    let n: usize = get();
    let m: i64 = get();
    let a: Vec<i64> = (0 .. n).map(|_| get()).collect();
    let k: Vec<i64> = (0 .. n).map(|_| get()).collect();
    let mut diff: i64 = 0;
    for i in 0 .. n {
        diff += a[i] * k[i];
    }
    diff -= m;
    let result = solve(&a, diff);
    println!("{}", if result == INF { -1 } else { result });
}
0