結果
問題 | No.1606 Stuffed Animals Keeper |
ユーザー | tenten |
提出日時 | 2021-11-29 15:56:50 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,321 bytes |
コンパイル時間 | 3,052 ms |
コンパイル使用メモリ | 80,092 KB |
実行使用メモリ | 158,080 KB |
最終ジャッジ日時 | 2024-07-02 12:35:53 |
合計ジャッジ時間 | 20,693 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
37,164 KB |
testcase_01 | AC | 50 ms
37,188 KB |
testcase_02 | AC | 48 ms
37,100 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 | 72 ms
38,580 KB |
testcase_14 | AC | 84 ms
38,876 KB |
testcase_15 | AC | 79 ms
38,816 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 | 204 ms
51,288 KB |
testcase_27 | AC | 233 ms
52,896 KB |
testcase_28 | AC | 223 ms
52,544 KB |
testcase_29 | AC | 237 ms
54,700 KB |
testcase_30 | AC | 198 ms
50,616 KB |
testcase_31 | AC | 200 ms
51,180 KB |
testcase_32 | AC | 74 ms
38,672 KB |
testcase_33 | AC | 171 ms
46,620 KB |
testcase_34 | AC | 74 ms
38,948 KB |
testcase_35 | AC | 172 ms
46,496 KB |
testcase_36 | WA | - |
testcase_37 | AC | 140 ms
44,496 KB |
testcase_38 | AC | 132 ms
44,324 KB |
testcase_39 | AC | 85 ms
38,812 KB |
testcase_40 | AC | 77 ms
38,620 KB |
testcase_41 | AC | 78 ms
38,608 KB |
testcase_42 | AC | 85 ms
38,572 KB |
testcase_43 | WA | - |
testcase_44 | AC | 626 ms
128,764 KB |
testcase_45 | AC | 618 ms
117,156 KB |
testcase_46 | AC | 588 ms
116,880 KB |
testcase_47 | AC | 620 ms
116,944 KB |
testcase_48 | AC | 51 ms
37,200 KB |
testcase_49 | AC | 51 ms
36,908 KB |
testcase_50 | AC | 48 ms
37,200 KB |
ソースコード
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(); ArrayList<Integer> meat = new ArrayList<>(); ArrayList<Integer> bege = new ArrayList<>(); int total = 0; int count = 0; for (int i = 0; i < n; i++) { int x = sc.nextInt(); if (x == 2 && total > 0 && count > 0 && count < total) { meat.add(count); bege.add(total - count); count = 0; total = 0; } if (x == 0 || x == 1) { total++; } if (x == 1) { count++; } } if (total > 0 && count > 0 && count < total) { meat.add(count); bege.add(total - count); } int length = meat.size(); ArrayList<HashMap<Integer, Integer>> dp = new ArrayList<>(); for (int i = 0; i <= length; i++) { dp.add(new HashMap<>()); } dp.get(0).put(0, 0); for (int i = 1; i <= length; i++) { int m = meat.get(i - 1); int b = bege.get(i - 1); for (int x : dp.get(i - 1).keySet()) { dp.get(i).put(x + m, Math.min(dp.get(i).getOrDefault(x + m, Integer.MAX_VALUE), dp.get(i - 1).get(x) + m)); dp.get(i).put(x - b, Math.min(dp.get(i).getOrDefault(x - b, Integer.MAX_VALUE), dp.get(i - 1).get(x))); } } System.out.println(dp.get(length).getOrDefault(0, -1)); } } 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 double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }