結果
問題 | No.1606 Stuffed Animals Keeper |
ユーザー | tenten |
提出日時 | 2021-07-20 18:52:06 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,257 bytes |
コンパイル時間 | 2,298 ms |
コンパイル使用メモリ | 79,368 KB |
実行使用メモリ | 54,304 KB |
最終ジャッジ日時 | 2024-07-17 13:45:47 |
合計ジャッジ時間 | 8,262 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
50,128 KB |
testcase_01 | AC | 54 ms
50,128 KB |
testcase_02 | AC | 53 ms
50,384 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 | 88 ms
51,620 KB |
testcase_14 | AC | 83 ms
51,564 KB |
testcase_15 | AC | 82 ms
51,596 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 | 93 ms
51,892 KB |
testcase_27 | AC | 88 ms
51,976 KB |
testcase_28 | AC | 92 ms
52,184 KB |
testcase_29 | AC | 92 ms
52,148 KB |
testcase_30 | AC | 87 ms
51,444 KB |
testcase_31 | AC | 86 ms
51,448 KB |
testcase_32 | AC | 87 ms
51,792 KB |
testcase_33 | AC | 85 ms
51,508 KB |
testcase_34 | AC | 84 ms
51,796 KB |
testcase_35 | AC | 84 ms
51,636 KB |
testcase_36 | WA | - |
testcase_37 | AC | 85 ms
51,684 KB |
testcase_38 | AC | 84 ms
51,748 KB |
testcase_39 | AC | 93 ms
51,676 KB |
testcase_40 | AC | 91 ms
51,740 KB |
testcase_41 | AC | 84 ms
51,356 KB |
testcase_42 | AC | 81 ms
51,700 KB |
testcase_43 | WA | - |
testcase_44 | AC | 110 ms
52,432 KB |
testcase_45 | AC | 109 ms
52,380 KB |
testcase_46 | AC | 109 ms
52,516 KB |
testcase_47 | AC | 109 ms
52,280 KB |
testcase_48 | AC | 54 ms
50,296 KB |
testcase_49 | AC | 54 ms
50,388 KB |
testcase_50 | AC | 53 ms
50,264 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(); int zeroCount = 0; int oneCount = 0; ArrayList<Integer> zeros = new ArrayList<>(); ArrayList<Integer> ones = new ArrayList<>(); 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); } int total = 0; int size = zeros.size(); for (int x : zeros) { total += x; } int[] dp = new int[total + 1]; Arrays.fill(dp, Integer.MAX_VALUE); dp[0] = 0; for (int i = 0; i < size; i++) { int sum = zeros.get(i) + ones.get(i); int value = ones.get(i); for (int j = total; j - sum >= 0; j--) { if (dp[j - sum] == Integer.MAX_VALUE) { continue; } dp[j] = Math.min(dp[j], dp[j - sum] + value); } } if (dp[total] == Integer.MAX_VALUE) { System.out.println(-1); } else { System.out.println(dp[total]); } } } 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(); } }