結果

問題 No.1606 Stuffed Animals Keeper
ユーザー tentententen
提出日時 2021-07-20 13:54:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,388 bytes
コンパイル時間 2,343 ms
コンパイル使用メモリ 78,652 KB
実行使用メモリ 156,956 KB
最終ジャッジ日時 2024-07-17 13:41:58
合計ジャッジ時間 25,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
49,912 KB
testcase_01 AC 55 ms
50,092 KB
testcase_02 AC 56 ms
50,380 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 91 ms
51,440 KB
testcase_14 AC 92 ms
51,524 KB
testcase_15 AC 93 ms
51,676 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 193 ms
63,476 KB
testcase_27 AC 236 ms
65,468 KB
testcase_28 AC 225 ms
66,208 KB
testcase_29 AC 228 ms
65,988 KB
testcase_30 AC 169 ms
61,476 KB
testcase_31 AC 174 ms
58,600 KB
testcase_32 AC 92 ms
51,584 KB
testcase_33 AC 150 ms
57,268 KB
testcase_34 AC 94 ms
51,696 KB
testcase_35 AC 166 ms
57,824 KB
testcase_36 WA -
testcase_37 AC 144 ms
55,100 KB
testcase_38 AC 128 ms
55,208 KB
testcase_39 AC 91 ms
51,572 KB
testcase_40 AC 93 ms
51,436 KB
testcase_41 AC 82 ms
51,724 KB
testcase_42 AC 84 ms
51,792 KB
testcase_43 WA -
testcase_44 AC 907 ms
141,244 KB
testcase_45 AC 922 ms
141,604 KB
testcase_46 AC 1,024 ms
141,460 KB
testcase_47 AC 931 ms
141,356 KB
testcase_48 AC 56 ms
49,980 KB
testcase_49 AC 55 ms
50,468 KB
testcase_50 AC 54 ms
50,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<Integer> zeros = new ArrayList<>();
    static ArrayList<Integer> ones = new ArrayList<>();
    static ArrayList<HashMap<Integer, Integer>> dp = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int zeroCount = 0;
        int oneCount = 0;
        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);
        }
        for (int i = 0; i < zeros.size(); i++) {
            dp.add(new HashMap<>());
        }
        int ans = dfw(dp.size() - 1, 0);
        if (ans < Integer.MAX_VALUE / 2) {
            System.out.println(ans / 2);
        } else {
            System.out.println(-1);
        }
    }
    
    static int dfw(int idx, int count) {
        if (idx < 0) {
            if (count == 0) {
                return 0;
            } else {
                return Integer.MAX_VALUE / 2;
            }
        }
        if (dp.get(idx).containsKey(count)) {
            return dp.get(idx).get(count);
        }
        int ans = Math.min(dfw(idx - 1, count - zeros.get(idx)) + zeros.get(idx), dfw(idx - 1, count + ones.get(idx)) + ones.get(idx));
        dp.get(idx).put(count, ans);
        return ans;
    }
}
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