結果

問題 No.247 線形計画問題もどき
ユーザー tentententen
提出日時 2021-11-10 20:49:53
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,848 bytes
コンパイル時間 2,421 ms
コンパイル使用メモリ 77,364 KB
実行使用メモリ 150,236 KB
最終ジャッジ日時 2024-11-21 12:34:06
合計ジャッジ時間 10,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
70,036 KB
testcase_01 AC 55 ms
50,416 KB
testcase_02 TLE -
testcase_03 AC 56 ms
50,372 KB
testcase_04 AC 57 ms
50,532 KB
testcase_05 AC 58 ms
50,432 KB
testcase_06 AC 57 ms
50,396 KB
testcase_07 AC 60 ms
50,396 KB
testcase_08 AC 82 ms
51,248 KB
testcase_09 AC 59 ms
50,080 KB
testcase_10 AC 56 ms
50,116 KB
testcase_11 AC 56 ms
50,376 KB
testcase_12 AC 55 ms
50,000 KB
testcase_13 AC 56 ms
50,152 KB
testcase_14 AC 55 ms
49,984 KB
testcase_15 AC 57 ms
50,416 KB
testcase_16 AC 58 ms
50,352 KB
testcase_17 AC 94 ms
60,488 KB
testcase_18 AC 1,381 ms
52,356 KB
testcase_19 AC 135 ms
83,552 KB
testcase_20 AC 430 ms
82,552 KB
testcase_21 AC 58 ms
52,604 KB
testcase_22 AC 68 ms
55,216 KB
testcase_23 AC 63 ms
54,944 KB
testcase_24 AC 382 ms
82,348 KB
testcase_25 AC 248 ms
76,160 KB
testcase_26 AC 59 ms
54,772 KB
testcase_27 AC 66 ms
150,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] values;
    static int[][] dp;
    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];
        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 cost) {
        if (cost == 0) {
            return 0;
        }
        if (idx < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (dp[idx][cost] == 0) {
            dp[idx][cost] = Integer.MAX_VALUE;
            for (int i = 0; i * values[idx] <= cost; i++) {
                dp[idx][cost] = Math.min(dp[idx][cost], dfw(idx - 1, cost - values[idx] * i) + i);
            }
        }
        return dp[idx][cost];
    }
}
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 nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0