結果

問題 No.1861 Required Number
ユーザー tentententen
提出日時 2022-03-07 11:15:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,414 bytes
コンパイル時間 3,773 ms
コンパイル使用メモリ 77,344 KB
実行使用メモリ 76,228 KB
最終ジャッジ日時 2024-07-22 04:43:29
合計ジャッジ時間 16,288 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,388 KB
testcase_01 WA -
testcase_02 AC 56 ms
49,896 KB
testcase_03 AC 250 ms
76,036 KB
testcase_04 AC 262 ms
76,228 KB
testcase_05 AC 56 ms
50,456 KB
testcase_06 AC 58 ms
50,248 KB
testcase_07 AC 57 ms
50,292 KB
testcase_08 AC 59 ms
49,904 KB
testcase_09 WA -
testcase_10 AC 57 ms
50,368 KB
testcase_11 AC 57 ms
50,316 KB
testcase_12 WA -
testcase_13 AC 58 ms
50,288 KB
testcase_14 AC 55 ms
50,396 KB
testcase_15 AC 58 ms
50,024 KB
testcase_16 WA -
testcase_17 AC 57 ms
50,368 KB
testcase_18 AC 59 ms
49,892 KB
testcase_19 AC 63 ms
50,056 KB
testcase_20 AC 60 ms
49,900 KB
testcase_21 AC 56 ms
50,284 KB
testcase_22 AC 60 ms
50,080 KB
testcase_23 AC 58 ms
50,124 KB
testcase_24 AC 135 ms
56,524 KB
testcase_25 AC 253 ms
68,828 KB
testcase_26 AC 120 ms
53,828 KB
testcase_27 AC 184 ms
58,220 KB
testcase_28 AC 150 ms
61,480 KB
testcase_29 AC 172 ms
57,272 KB
testcase_30 AC 129 ms
52,164 KB
testcase_31 AC 213 ms
67,768 KB
testcase_32 AC 141 ms
54,688 KB
testcase_33 AC 230 ms
65,252 KB
testcase_34 AC 207 ms
64,496 KB
testcase_35 AC 228 ms
65,008 KB
testcase_36 AC 186 ms
58,152 KB
testcase_37 AC 206 ms
62,456 KB
testcase_38 AC 253 ms
65,240 KB
testcase_39 AC 155 ms
61,328 KB
testcase_40 AC 219 ms
67,716 KB
testcase_41 AC 212 ms
67,668 KB
testcase_42 AC 210 ms
65,144 KB
testcase_43 AC 201 ms
62,804 KB
testcase_44 AC 56 ms
50,228 KB
04_evil_1.txt MLE -
04_evil_2.txt MLE -
04_evil_3.txt MLE -
04_evil_4.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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 k = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        boolean[][] leftDP = new boolean[n][k + 1];
        leftDP[0][0] = true;
        leftDP[0][values[0]] = true;
        for (int i = 1; i < n; i++) {
            for (int j = 0; j <= k; j++) {
                if (leftDP[i - 1][j]) {
                    leftDP[i][j] = true;
                    if (j + values[i] <= k) {
                        leftDP[i][j + values[i]] = true;
                    }
                }
            }
        }
        boolean[][] rightDP = new boolean[n][k + 1];
        rightDP[n - 1][0] = true;
        rightDP[n - 1][values[n - 1]] = true;
        for (int i = n - 2; i >= 0; i--) {
            for (int j = 0; j <= k; j++) {
                if (rightDP[i + 1][j]) {
                    rightDP[i][j] = true;
                    if (j + values[i] <= k) {
                        rightDP[i][j + values[i]] = true;
                    }
                }
            }
        }
        int ans = 0;
        for (int i = 1; i < n - 1; i++) {
            boolean enable = false;
            for (int j = 0; j <= k && !enable; j++)  {
                enable = leftDP[i - 1][j] && rightDP[i + 1][k - j];
            }
            if (!enable) {
                ans++;
            }
        }
        if (!rightDP[1][k]) {
            ans++;
        }
        if (!leftDP[n - 2][k]) {
            ans++;
        }
        System.out.println(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 double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0