結果

問題 No.1163 I want to be a high achiever
ユーザー tentententen
提出日時 2024-07-22 16:54:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 2,313 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 48,168 KB
最終ジャッジ日時 2024-07-22 16:54:58
合計ジャッジ時間 6,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,712 KB
testcase_01 AC 49 ms
36,960 KB
testcase_02 AC 48 ms
37,156 KB
testcase_03 AC 50 ms
37,360 KB
testcase_04 AC 124 ms
42,872 KB
testcase_05 AC 84 ms
39,760 KB
testcase_06 AC 129 ms
48,028 KB
testcase_07 AC 62 ms
38,392 KB
testcase_08 AC 60 ms
37,920 KB
testcase_09 AC 111 ms
47,708 KB
testcase_10 AC 112 ms
43,228 KB
testcase_11 AC 72 ms
39,040 KB
testcase_12 AC 119 ms
42,772 KB
testcase_13 AC 150 ms
48,112 KB
testcase_14 AC 137 ms
48,168 KB
testcase_15 AC 76 ms
38,476 KB
testcase_16 AC 122 ms
43,648 KB
testcase_17 AC 103 ms
41,664 KB
testcase_18 AC 65 ms
38,408 KB
testcase_19 AC 133 ms
48,116 KB
testcase_20 AC 127 ms
48,168 KB
testcase_21 AC 107 ms
47,656 KB
testcase_22 AC 99 ms
40,340 KB
testcase_23 AC 101 ms
41,496 KB
testcase_24 AC 59 ms
38,104 KB
testcase_25 AC 120 ms
43,904 KB
testcase_26 AC 53 ms
37,136 KB
testcase_27 AC 48 ms
37,140 KB
testcase_28 AC 48 ms
37,004 KB
testcase_29 AC 54 ms
37,328 KB
testcase_30 AC 48 ms
37,016 KB
testcase_31 AC 48 ms
37,220 KB
testcase_32 AC 48 ms
37,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static List<Integer> values = new ArrayList<>();
    static List<Integer> costs = new ArrayList<>();
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int target = sc.nextInt();
        int[] current = new int[n];
        for (int i = 0; i < n; i++) {
            current[i] = target - sc.nextInt();
        }
        int total = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (current[i] <= 0) {
                total -= current[i];
            } else {
                values.add(current[i]);
                costs.add(x);
            }
        }
        if (values.size() == n) {
            System.out.println(-1);
            return;
        }
        dp = new int[values.size()][total + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(values.size() - 1, total));
    }
    
    static int dfw(int idx, int v) {
        if (v < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = Math.min(dfw(idx - 1, v) + costs.get(idx), dfw(idx - 1, v - values.get(idx)));
        }
        return dp[idx][v];
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0