結果

問題 No.1163 I want to be a high achiever
ユーザー tentententen
提出日時 2023-03-17 16:19:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 2,649 bytes
コンパイル時間 2,560 ms
コンパイル使用メモリ 91,608 KB
実行使用メモリ 58,828 KB
最終ジャッジ日時 2024-09-18 10:02:35
合計ジャッジ時間 6,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,420 KB
testcase_01 AC 54 ms
50,336 KB
testcase_02 AC 54 ms
50,700 KB
testcase_03 AC 54 ms
50,072 KB
testcase_04 AC 121 ms
55,512 KB
testcase_05 AC 89 ms
52,064 KB
testcase_06 AC 140 ms
58,688 KB
testcase_07 AC 73 ms
51,396 KB
testcase_08 AC 65 ms
51,236 KB
testcase_09 AC 123 ms
58,260 KB
testcase_10 AC 133 ms
55,628 KB
testcase_11 AC 80 ms
52,188 KB
testcase_12 AC 110 ms
55,500 KB
testcase_13 AC 148 ms
58,692 KB
testcase_14 AC 147 ms
58,828 KB
testcase_15 AC 86 ms
51,488 KB
testcase_16 AC 141 ms
55,856 KB
testcase_17 AC 114 ms
53,588 KB
testcase_18 AC 76 ms
51,832 KB
testcase_19 AC 145 ms
58,392 KB
testcase_20 AC 142 ms
58,676 KB
testcase_21 AC 117 ms
58,416 KB
testcase_22 AC 94 ms
52,148 KB
testcase_23 AC 113 ms
53,516 KB
testcase_24 AC 66 ms
51,080 KB
testcase_25 AC 123 ms
55,284 KB
testcase_26 AC 60 ms
50,700 KB
testcase_27 AC 54 ms
50,492 KB
testcase_28 AC 54 ms
50,452 KB
testcase_29 AC 59 ms
50,492 KB
testcase_30 AC 54 ms
50,292 KB
testcase_31 AC 54 ms
50,644 KB
testcase_32 AC 53 ms
50,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 k = sc.nextInt();
        int total = 0;
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        for (int i = 0; i < n; i++) {
            int b = sc.nextInt();
            if (values[i] >= k) {
                total += values[i] - k;
            } else {
                points.add(k - values[i]);
                costs.add(b);
            }
        }
        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 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 - points.get(idx)));
        }
        return dp[idx][v];
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0