結果

問題 No.1606 Stuffed Animals Keeper
ユーザー tentententen
提出日時 2023-03-25 11:54:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 205 ms / 3,000 ms
コード長 2,990 bytes
コンパイル時間 2,884 ms
コンパイル使用メモリ 85,132 KB
実行使用メモリ 57,088 KB
最終ジャッジ日時 2024-09-18 19:11:02
合計ジャッジ時間 11,014 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,228 KB
testcase_01 AC 53 ms
37,364 KB
testcase_02 AC 53 ms
36,776 KB
testcase_03 AC 184 ms
48,600 KB
testcase_04 AC 192 ms
48,616 KB
testcase_05 AC 111 ms
40,672 KB
testcase_06 AC 140 ms
42,964 KB
testcase_07 AC 177 ms
48,748 KB
testcase_08 AC 177 ms
48,500 KB
testcase_09 AC 133 ms
42,540 KB
testcase_10 AC 104 ms
40,044 KB
testcase_11 AC 77 ms
38,664 KB
testcase_12 AC 145 ms
42,860 KB
testcase_13 AC 92 ms
38,640 KB
testcase_14 AC 83 ms
39,092 KB
testcase_15 AC 91 ms
38,764 KB
testcase_16 AC 199 ms
53,028 KB
testcase_17 AC 200 ms
52,572 KB
testcase_18 AC 202 ms
52,780 KB
testcase_19 AC 205 ms
52,888 KB
testcase_20 AC 204 ms
53,020 KB
testcase_21 AC 136 ms
42,844 KB
testcase_22 AC 139 ms
42,784 KB
testcase_23 AC 141 ms
42,816 KB
testcase_24 AC 141 ms
43,376 KB
testcase_25 AC 139 ms
42,660 KB
testcase_26 AC 109 ms
40,848 KB
testcase_27 AC 114 ms
40,432 KB
testcase_28 AC 112 ms
40,240 KB
testcase_29 AC 115 ms
40,676 KB
testcase_30 AC 107 ms
39,740 KB
testcase_31 AC 107 ms
39,800 KB
testcase_32 AC 91 ms
38,312 KB
testcase_33 AC 103 ms
39,832 KB
testcase_34 AC 81 ms
38,836 KB
testcase_35 AC 105 ms
39,904 KB
testcase_36 AC 103 ms
39,604 KB
testcase_37 AC 105 ms
39,616 KB
testcase_38 AC 93 ms
39,720 KB
testcase_39 AC 91 ms
39,080 KB
testcase_40 AC 90 ms
39,116 KB
testcase_41 AC 82 ms
38,796 KB
testcase_42 AC 92 ms
38,948 KB
testcase_43 AC 201 ms
52,888 KB
testcase_44 AC 200 ms
57,088 KB
testcase_45 AC 201 ms
56,888 KB
testcase_46 AC 197 ms
56,868 KB
testcase_47 AC 199 ms
53,060 KB
testcase_48 AC 52 ms
37,292 KB
testcase_49 AC 55 ms
37,236 KB
testcase_50 AC 54 ms
36,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<Integer> meats = new ArrayList<>();
    static ArrayList<Integer> grasses = new ArrayList<>();
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int mCount = 0;
        int gCount = 0;
        int gSum = 0;
        for (int i = 0; i < n; i++) {
            int type = sc.nextInt();
            if (type == 0) {
                mCount++;
            } else if (type == 1) {
                gCount++;
                gSum++;
            } else {
                if (mCount > 0 || gCount > 0) {
                    meats.add(mCount);
                    grasses.add(gCount);
                    mCount = 0;
                    gCount = 0;
                }
            }
        }
        if (mCount > 0 || gCount > 0) {
            meats.add(mCount);
            grasses.add(gCount);
        }
        dp = new int[meats.size()][gSum + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        int ans = dfw(meats.size() - 1, gSum);
        if (ans >= Integer.MAX_VALUE / 2) {
            System.out.println(-1);
        } else {
            System.out.println(ans);
        }
    }
    
    static int dfw(int idx, int v) {
        if (v < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (v == 0) {
            return 0;
        } 
        if (idx < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = Math.min(dfw(idx - 1, v), dfw(idx - 1, v - meats.get(idx) - grasses.get(idx)) + meats.get(idx));
        }
        return dp[idx][v];
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0