結果

問題 No.1606 Stuffed Animals Keeper
ユーザー tentententen
提出日時 2021-07-20 19:44:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 3,000 ms
コード長 2,257 bytes
コンパイル時間 2,839 ms
コンパイル使用メモリ 79,404 KB
実行使用メモリ 52,536 KB
最終ジャッジ日時 2024-07-17 13:47:21
合計ジャッジ時間 8,560 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,436 KB
testcase_01 AC 55 ms
50,492 KB
testcase_02 AC 56 ms
50,292 KB
testcase_03 AC 105 ms
52,264 KB
testcase_04 AC 111 ms
52,260 KB
testcase_05 AC 105 ms
52,392 KB
testcase_06 AC 91 ms
52,204 KB
testcase_07 AC 107 ms
51,956 KB
testcase_08 AC 100 ms
51,852 KB
testcase_09 AC 106 ms
51,844 KB
testcase_10 AC 101 ms
52,008 KB
testcase_11 AC 66 ms
50,460 KB
testcase_12 AC 107 ms
52,384 KB
testcase_13 AC 84 ms
51,860 KB
testcase_14 AC 80 ms
51,340 KB
testcase_15 AC 82 ms
51,452 KB
testcase_16 AC 112 ms
52,256 KB
testcase_17 AC 115 ms
52,340 KB
testcase_18 AC 114 ms
52,188 KB
testcase_19 AC 115 ms
52,224 KB
testcase_20 AC 110 ms
52,228 KB
testcase_21 AC 104 ms
51,820 KB
testcase_22 AC 97 ms
51,940 KB
testcase_23 AC 97 ms
52,072 KB
testcase_24 AC 97 ms
52,032 KB
testcase_25 AC 107 ms
51,964 KB
testcase_26 AC 90 ms
51,984 KB
testcase_27 AC 92 ms
51,720 KB
testcase_28 AC 92 ms
52,076 KB
testcase_29 AC 93 ms
51,752 KB
testcase_30 AC 99 ms
51,852 KB
testcase_31 AC 89 ms
51,524 KB
testcase_32 AC 93 ms
51,284 KB
testcase_33 AC 97 ms
51,748 KB
testcase_34 AC 94 ms
51,768 KB
testcase_35 AC 87 ms
51,484 KB
testcase_36 AC 98 ms
51,496 KB
testcase_37 AC 97 ms
51,632 KB
testcase_38 AC 96 ms
51,872 KB
testcase_39 AC 94 ms
51,432 KB
testcase_40 AC 83 ms
51,500 KB
testcase_41 AC 83 ms
51,372 KB
testcase_42 AC 85 ms
51,496 KB
testcase_43 AC 115 ms
52,536 KB
testcase_44 AC 113 ms
52,292 KB
testcase_45 AC 114 ms
52,040 KB
testcase_46 AC 114 ms
52,092 KB
testcase_47 AC 115 ms
52,236 KB
testcase_48 AC 55 ms
49,832 KB
testcase_49 AC 55 ms
49,908 KB
testcase_50 AC 54 ms
50,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int zeroCount = 0;
        int oneCount = 0;
        ArrayList<Integer> zeros = new ArrayList<>();
        ArrayList<Integer> ones = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (x == 2) {
                if (zeroCount > 0 || oneCount > 0) {
                    zeros.add(zeroCount);
                    ones.add(oneCount);
                    zeroCount = 0;
                    oneCount = 0;
                }
            } else if (x == 0) {
                zeroCount++;
            } else {
                oneCount++;
            }
        }
        if (zeroCount > 0 || oneCount > 0) {
            zeros.add(zeroCount);
            ones.add(oneCount);
        }
        int total = 0;
        int size = zeros.size();
        for (int x : zeros) {
            total += x;
        }
        int[] dp = new int[total + 1];
        Arrays.fill(dp, Integer.MAX_VALUE);
        dp[0] = 0;
        for (int i = 0; i < size; i++) {
            int sum = zeros.get(i) + ones.get(i);
            int value = ones.get(i);
            for (int j = total; j - sum >= 0; j--) {
                if (dp[j - sum] == Integer.MAX_VALUE) {
                    continue;
                }
                dp[j] = Math.min(dp[j], dp[j - sum] + value);
            }
        }
        if (dp[total] == Integer.MAX_VALUE) {
            System.out.println(-1);
        } else {
            System.out.println(dp[total]);
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0