結果

問題 No.1163 I want to be a high achiever
ユーザー tentententen
提出日時 2021-12-01 14:30:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 2,110 bytes
コンパイル時間 2,653 ms
コンパイル使用メモリ 79,144 KB
実行使用メモリ 47,912 KB
最終ジャッジ日時 2024-07-04 14:12:19
合計ジャッジ時間 6,997 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,916 KB
testcase_01 AC 49 ms
37,012 KB
testcase_02 AC 47 ms
36,968 KB
testcase_03 AC 50 ms
36,600 KB
testcase_04 AC 140 ms
42,400 KB
testcase_05 AC 84 ms
38,668 KB
testcase_06 AC 142 ms
47,632 KB
testcase_07 AC 78 ms
38,292 KB
testcase_08 AC 58 ms
37,312 KB
testcase_09 AC 113 ms
47,516 KB
testcase_10 AC 110 ms
42,428 KB
testcase_11 AC 88 ms
38,784 KB
testcase_12 AC 105 ms
42,108 KB
testcase_13 AC 140 ms
47,604 KB
testcase_14 AC 142 ms
47,824 KB
testcase_15 AC 67 ms
38,288 KB
testcase_16 AC 116 ms
43,376 KB
testcase_17 AC 99 ms
41,608 KB
testcase_18 AC 78 ms
38,272 KB
testcase_19 AC 145 ms
47,564 KB
testcase_20 AC 141 ms
47,912 KB
testcase_21 AC 113 ms
47,648 KB
testcase_22 AC 92 ms
39,516 KB
testcase_23 AC 101 ms
41,396 KB
testcase_24 AC 66 ms
38,052 KB
testcase_25 AC 121 ms
43,148 KB
testcase_26 AC 55 ms
37,336 KB
testcase_27 AC 51 ms
37,052 KB
testcase_28 AC 50 ms
36,724 KB
testcase_29 AC 56 ms
37,136 KB
testcase_30 AC 50 ms
37,020 KB
testcase_31 AC 51 ms
36,884 KB
testcase_32 AC 49 ms
37,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<Integer> points = new ArrayList<>();
    static ArrayList<Integer> costs = new ArrayList<>();
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int x = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt() - x;
        }
        int total = 0;
        for (int i = 0; i < n; i++) {
            int c = sc.nextInt();
            if (values[i] >= 0) {
                total += values[i];
            } else {
                points.add(values[i]);
                costs.add(c);
            }
        }
        if (points.size() == n) {
            System.out.println(-1);
            return;
        }
        dp = new int[points.size()][total + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(points.size() - 1, total));
    }
    
    static int dfw(int idx, int price) {
        if (price < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][price] < 0) {
            dp[idx][price] = Math.min(dfw(idx - 1, price) + costs.get(idx), dfw(idx - 1, price + points.get(idx)));
        }
        return dp[idx][price];
    }
}

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