結果
問題 | No.1606 Stuffed Animals Keeper |
ユーザー | tenten |
提出日時 | 2021-11-29 16:02:33 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,074 ms / 3,000 ms |
コード長 | 2,262 bytes |
コンパイル時間 | 2,548 ms |
コンパイル使用メモリ | 91,092 KB |
実行使用メモリ | 216,384 KB |
最終ジャッジ日時 | 2024-07-02 12:38:37 |
合計ジャッジ時間 | 23,972 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
50,288 KB |
testcase_01 | AC | 49 ms
50,032 KB |
testcase_02 | AC | 49 ms
50,404 KB |
testcase_03 | AC | 701 ms
149,864 KB |
testcase_04 | AC | 879 ms
173,904 KB |
testcase_05 | AC | 322 ms
74,184 KB |
testcase_06 | AC | 474 ms
97,104 KB |
testcase_07 | AC | 640 ms
137,672 KB |
testcase_08 | AC | 632 ms
130,972 KB |
testcase_09 | AC | 427 ms
84,116 KB |
testcase_10 | AC | 290 ms
66,768 KB |
testcase_11 | AC | 190 ms
59,168 KB |
testcase_12 | AC | 445 ms
97,176 KB |
testcase_13 | AC | 84 ms
51,600 KB |
testcase_14 | AC | 79 ms
51,548 KB |
testcase_15 | AC | 81 ms
51,620 KB |
testcase_16 | AC | 1,066 ms
216,384 KB |
testcase_17 | AC | 1,069 ms
216,044 KB |
testcase_18 | AC | 1,064 ms
215,644 KB |
testcase_19 | AC | 1,074 ms
216,044 KB |
testcase_20 | AC | 1,022 ms
216,244 KB |
testcase_21 | AC | 490 ms
100,144 KB |
testcase_22 | AC | 508 ms
94,716 KB |
testcase_23 | AC | 471 ms
95,816 KB |
testcase_24 | AC | 473 ms
95,236 KB |
testcase_25 | AC | 466 ms
94,396 KB |
testcase_26 | AC | 195 ms
61,716 KB |
testcase_27 | AC | 232 ms
63,884 KB |
testcase_28 | AC | 229 ms
63,984 KB |
testcase_29 | AC | 254 ms
64,436 KB |
testcase_30 | AC | 207 ms
61,504 KB |
testcase_31 | AC | 196 ms
61,080 KB |
testcase_32 | AC | 83 ms
51,688 KB |
testcase_33 | AC | 162 ms
57,404 KB |
testcase_34 | AC | 83 ms
51,684 KB |
testcase_35 | AC | 161 ms
57,396 KB |
testcase_36 | AC | 149 ms
57,472 KB |
testcase_37 | AC | 146 ms
55,284 KB |
testcase_38 | AC | 131 ms
55,012 KB |
testcase_39 | AC | 76 ms
51,456 KB |
testcase_40 | AC | 76 ms
51,552 KB |
testcase_41 | AC | 83 ms
51,624 KB |
testcase_42 | AC | 84 ms
51,688 KB |
testcase_43 | AC | 803 ms
167,152 KB |
testcase_44 | AC | 838 ms
167,336 KB |
testcase_45 | AC | 807 ms
169,160 KB |
testcase_46 | AC | 791 ms
167,224 KB |
testcase_47 | AC | 816 ms
169,104 KB |
testcase_48 | AC | 50 ms
50,288 KB |
testcase_49 | AC | 51 ms
50,280 KB |
testcase_50 | AC | 48 ms
50,276 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) { meat.add(count); bege.add(total - count); } if (x == 2) { count = 0; total = 0; continue; } total++; count += x; } 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(); } }