結果

問題 No.247 線形計画問題もどき
ユーザー tentententen
提出日時 2021-12-03 08:20:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 1,775 bytes
コンパイル時間 3,193 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 90,896 KB
最終ジャッジ日時 2024-07-05 12:24:42
合計ジャッジ時間 7,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
53,676 KB
testcase_01 AC 43 ms
37,232 KB
testcase_02 AC 231 ms
90,896 KB
testcase_03 AC 43 ms
36,944 KB
testcase_04 AC 41 ms
36,912 KB
testcase_05 AC 42 ms
37,160 KB
testcase_06 AC 41 ms
37,160 KB
testcase_07 AC 47 ms
38,460 KB
testcase_08 AC 66 ms
51,116 KB
testcase_09 AC 42 ms
36,680 KB
testcase_10 AC 43 ms
37,524 KB
testcase_11 AC 42 ms
36,980 KB
testcase_12 AC 42 ms
37,036 KB
testcase_13 AC 42 ms
37,036 KB
testcase_14 AC 41 ms
37,136 KB
testcase_15 AC 41 ms
36,868 KB
testcase_16 AC 41 ms
36,888 KB
testcase_17 AC 91 ms
50,256 KB
testcase_18 AC 55 ms
37,960 KB
testcase_19 AC 124 ms
73,624 KB
testcase_20 AC 184 ms
72,368 KB
testcase_21 AC 56 ms
40,468 KB
testcase_22 AC 72 ms
45,132 KB
testcase_23 AC 60 ms
44,880 KB
testcase_24 AC 188 ms
72,196 KB
testcase_25 AC 149 ms
64,880 KB
testcase_26 AC 73 ms
45,072 KB
testcase_27 AC 77 ms
49,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static int[][] dp;
    static int[] values;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int c = sc.nextInt();
        int n = sc.nextInt();
        values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        dp = new int[n][c + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        int ans = dfw(n - 1, c);
        if (ans >= Integer.MAX_VALUE / 2) {
            System.out.println(-1);
        } else {
            System.out.println(ans);
        }
    }
    
    static int dfw(int idx, int c) {
        if (c == 0) {
            return 0;
        }
        if (idx < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (dp[idx][c] < 0) {
            dp[idx][c] = dfw(idx - 1, c);
            if (c >= values[idx]) {
                dp[idx][c] = Math.min(dp[idx][c], dfw(idx, c - values[idx]) + 1);
            }
        }
        return dp[idx][c];
    }
}
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