結果

問題 No.288 貯金箱の仕事
ユーザー koba-e964koba-e964
提出日時 2017-01-10 23:17:18
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 620 ms / 2,000 ms
コード長 2,243 bytes
コンパイル時間 16,448 ms
コンパイル使用メモリ 400,048 KB
実行使用メモリ 492,800 KB
最終ジャッジ日時 2024-12-18 01:05:14
合計ジャッジ時間 23,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
8,704 KB
testcase_01 AC 4 ms
6,820 KB
testcase_02 AC 5 ms
6,820 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 5 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 60 ms
51,840 KB
testcase_08 AC 18 ms
17,536 KB
testcase_09 AC 47 ms
40,960 KB
testcase_10 AC 52 ms
44,928 KB
testcase_11 AC 23 ms
20,480 KB
testcase_12 AC 46 ms
40,064 KB
testcase_13 AC 37 ms
33,280 KB
testcase_14 AC 45 ms
38,912 KB
testcase_15 AC 56 ms
47,872 KB
testcase_16 AC 51 ms
41,984 KB
testcase_17 AC 36 ms
31,232 KB
testcase_18 AC 23 ms
22,400 KB
testcase_19 AC 31 ms
28,288 KB
testcase_20 AC 21 ms
18,560 KB
testcase_21 AC 24 ms
20,352 KB
testcase_22 AC 48 ms
40,064 KB
testcase_23 AC 620 ms
492,800 KB
testcase_24 AC 312 ms
247,680 KB
testcase_25 AC 4 ms
6,820 KB
testcase_26 AC 4 ms
6,816 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 4 ms
6,820 KB
testcase_29 AC 4 ms
6,816 KB
testcase_30 AC 151 ms
127,232 KB
testcase_31 AC 158 ms
127,360 KB
testcase_32 AC 301 ms
249,856 KB
testcase_33 AC 302 ms
249,856 KB
testcase_34 AC 441 ms
372,224 KB
testcase_35 AC 449 ms
372,352 KB
testcase_36 AC 584 ms
492,800 KB
testcase_37 AC 167 ms
141,056 KB
testcase_38 AC 427 ms
340,992 KB
testcase_39 AC 188 ms
164,608 KB
testcase_40 AC 193 ms
169,472 KB
testcase_41 AC 549 ms
471,168 KB
testcase_42 AC 478 ms
409,600 KB
testcase_43 AC 334 ms
288,000 KB
testcase_44 AC 241 ms
201,600 KB
testcase_45 AC 444 ms
378,112 KB
testcase_46 AC 487 ms
414,464 KB
testcase_47 AC 317 ms
274,304 KB
testcase_48 AC 348 ms
299,648 KB
testcase_49 AC 212 ms
181,120 KB
testcase_50 AC 277 ms
237,056 KB
testcase_51 AC 195 ms
171,392 KB
testcase_52 AC 281 ms
242,944 KB
testcase_53 AC 364 ms
316,544 KB
testcase_54 AC 255 ms
219,264 KB
testcase_55 AC 5 ms
6,816 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()) }


fn solve(a: &[i64], v: i64) -> Option<i64> {
    if v < 0 {
        return None;
    }
    let n = a.len();
    const W: usize = 250000;
    const INF: i32 = 0x3fff_ffff;
    let mut dp: Vec<Vec<i32>> = 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 {
        let tmp = dp[n][v as usize];
        if tmp >= INF {
            return None;
        }
        return Some(tmp as i64);
    }
    let biggest = a[n - 1] as i64;
    let diff = (v + 1 - W as i64 + biggest - 1) / biggest * biggest;
    assert!(v - diff < W as i64);
    let tmp = dp[n][(v - diff) as usize];
    if tmp >= INF {
        return None;
    }
    return Some(tmp as i64 + 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!("{}", result.unwrap_or(-1));
}
0