結果

問題 No.1606 Stuffed Animals Keeper
ユーザー phsplsphspls
提出日時 2022-10-26 01:13:48
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 65 ms / 3,000 ms
コード長 1,235 bytes
コンパイル時間 13,425 ms
コンパイル使用メモリ 382,388 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2024-07-03 20:30:45
合計ジャッジ時間 14,740 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 27 ms
28,672 KB
testcase_04 AC 35 ms
35,456 KB
testcase_05 AC 7 ms
7,552 KB
testcase_06 AC 12 ms
12,928 KB
testcase_07 AC 24 ms
24,448 KB
testcase_08 AC 21 ms
22,528 KB
testcase_09 AC 10 ms
10,624 KB
testcase_10 AC 6 ms
6,656 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 12 ms
12,928 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 44 ms
44,928 KB
testcase_17 AC 45 ms
45,696 KB
testcase_18 AC 45 ms
45,824 KB
testcase_19 AC 41 ms
45,440 KB
testcase_20 AC 43 ms
45,312 KB
testcase_21 AC 9 ms
8,576 KB
testcase_22 AC 8 ms
7,808 KB
testcase_23 AC 7 ms
7,808 KB
testcase_24 AC 8 ms
8,576 KB
testcase_25 AC 7 ms
8,064 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 1 ms
5,376 KB
testcase_40 AC 1 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 64 ms
67,200 KB
testcase_44 AC 61 ms
67,200 KB
testcase_45 AC 61 ms
67,200 KB
testcase_46 AC 65 ms
67,200 KB
testcase_47 AC 62 ms
67,200 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const INF: usize = 1usize << 60;

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();
    let mut a = String::new();
    std::io::stdin().read_line(&mut a).ok();
    let a: Vec<_> = a.trim().split_whitespace().collect::<Vec<_>>().join("").split('2').map(|s| s.chars().collect::<Vec<_>>()).collect();

    let zeros = a.iter().filter(|&v| v.len() > 0).map(|v| v.iter().filter(|&&c| c == '1').count()).sum::<usize>();
    let one_cnt = a.iter().filter(|&v| v.len() > 0).map(|v| v.iter().filter(|&&c| c == '1').count()).collect::<Vec<_>>();
    let size_cnt = a.iter().filter(|&v| v.len() > 0).map(|v| v.len()).collect::<Vec<_>>();
    let mut dp = vec![vec![INF; n+1]; size_cnt.len()+1];
    dp[0][0] = 0;
    for i in 0..size_cnt.len() {
        let to_zero_cnt = size_cnt[i] - one_cnt[i];
        for j in 0..=n {
            if dp[i][j] == INF { continue; }
            dp[i+1][j+size_cnt[i]] = dp[i+1][j+size_cnt[i]].min(dp[i][j] + to_zero_cnt);
            dp[i+1][j] = dp[i+1][j].min(dp[i][j]);
        }
    }
    if dp[size_cnt.len()][zeros] == INF {
        println!("-1");
    } else {
        println!("{}", dp[size_cnt.len()][zeros]);
    }
}
0