結果

問題 No.1606 Stuffed Animals Keeper
ユーザー tentententen
提出日時 2023-04-25 19:14:05
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 3,139 bytes
コンパイル時間 3,611 ms
コンパイル使用メモリ 87,912 KB
実行使用メモリ 1,083,692 KB
最終ジャッジ日時 2024-11-14 15:29:58
合計ジャッジ時間 72,521 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
57,192 KB
testcase_01 MLE -
testcase_02 AC 56 ms
57,260 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 AC 1,500 ms
226,056 KB
testcase_07 MLE -
testcase_08 AC 2,888 ms
373,512 KB
testcase_09 AC 1,486 ms
176,176 KB
testcase_10 AC 714 ms
121,016 KB
testcase_11 AC 266 ms
74,840 KB
testcase_12 AC 1,679 ms
218,988 KB
testcase_13 AC 87 ms
51,748 KB
testcase_14 AC 89 ms
51,616 KB
testcase_15 AC 90 ms
51,740 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 1,576 ms
204,520 KB
testcase_22 AC 1,371 ms
168,604 KB
testcase_23 AC 1,587 ms
205,840 KB
testcase_24 AC 1,614 ms
206,708 KB
testcase_25 AC 1,619 ms
204,732 KB
testcase_26 AC 439 ms
90,420 KB
testcase_27 AC 439 ms
93,588 KB
testcase_28 AC 342 ms
83,528 KB
testcase_29 AC 426 ms
95,872 KB
testcase_30 AC 352 ms
80,432 KB
testcase_31 AC 241 ms
71,104 KB
testcase_32 AC 91 ms
51,616 KB
testcase_33 AC 198 ms
62,752 KB
testcase_34 AC 83 ms
52,004 KB
testcase_35 AC 226 ms
64,976 KB
testcase_36 AC 198 ms
62,728 KB
testcase_37 AC 182 ms
63,952 KB
testcase_38 AC 159 ms
60,148 KB
testcase_39 AC 84 ms
51,616 KB
testcase_40 AC 95 ms
51,536 KB
testcase_41 AC 91 ms
51,752 KB
testcase_42 AC 90 ms
51,632 KB
testcase_43 AC 2,917 ms
467,832 KB
testcase_44 AC 2,953 ms
467,708 KB
testcase_45 AC 2,923 ms
467,684 KB
testcase_46 AC 2,922 ms
466,236 KB
testcase_47 AC 2,916 ms
468,044 KB
testcase_48 AC 54 ms
50,416 KB
testcase_49 AC 53 ms
50,500 KB
testcase_50 MLE -
権限があれば一括ダウンロードができます

ソースコード

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 ArrayList<HashMap<Integer, HashMap<Integer, Integer>>> dp = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int mCount = 0;
        int gCount = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (x == 0) {
                mCount++;
            } else if (x == 1) {
                gCount++;
            } else {
                if (mCount > 0 || gCount > 0) {
                    meats.add(mCount);
                    grasses.add(gCount);
                    dp.add(new HashMap<>());
                    mCount = 0;
                    gCount = 0;
                }
            }
        }
        if (mCount > 0 || gCount > 0) {
            meats.add(mCount);
            grasses.add(gCount);
            dp.add(new HashMap<>());
        }
        int ans = dfw(dp.size() - 1, 0, 0);
        if (ans > n * 2) {
            System.out.println(-1);
        } else {
            System.out.println(ans / 2);
        }
    }
    
    static int dfw(int idx, int m, int g) {
        if (idx < 0) {
            if (m == 0 && g == 0) {
                return 0;
            } else {
                return Integer.MAX_VALUE / 2;
            }
        }
        if (!dp.get(idx).containsKey(m)) {
            dp.get(idx).put(m, new HashMap<>());
        }
        if (!dp.get(idx).get(m).containsKey(g)) {
            dp.get(idx).get(m).put(g, Math.min(dfw(idx - 1, m - grasses.get(idx), g + grasses.get(idx)) + grasses.get(idx), dfw(idx - 1, m + meats.get(idx), g - meats.get(idx)) + meats.get(idx)));
        }
        return dp.get(idx).get(m).get(g);
    }
}
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