結果

問題 No.1163 I want to be a high achiever
ユーザー tentententen
提出日時 2020-08-25 07:48:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 1,482 bytes
コンパイル時間 2,312 ms
コンパイル使用メモリ 77,864 KB
実行使用メモリ 64,168 KB
最終ジャッジ日時 2024-11-06 11:02:50
合計ジャッジ時間 10,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,176 KB
testcase_01 AC 142 ms
54,196 KB
testcase_02 AC 142 ms
54,044 KB
testcase_03 AC 146 ms
54,172 KB
testcase_04 AC 267 ms
59,944 KB
testcase_05 AC 208 ms
56,748 KB
testcase_06 AC 270 ms
59,876 KB
testcase_07 AC 210 ms
54,420 KB
testcase_08 AC 201 ms
54,632 KB
testcase_09 AC 261 ms
64,100 KB
testcase_10 AC 262 ms
59,796 KB
testcase_11 AC 211 ms
56,976 KB
testcase_12 AC 253 ms
57,120 KB
testcase_13 AC 274 ms
60,144 KB
testcase_14 AC 274 ms
59,836 KB
testcase_15 AC 202 ms
54,780 KB
testcase_16 AC 275 ms
59,856 KB
testcase_17 AC 234 ms
57,004 KB
testcase_18 AC 211 ms
54,276 KB
testcase_19 AC 273 ms
59,904 KB
testcase_20 AC 273 ms
59,852 KB
testcase_21 AC 261 ms
64,168 KB
testcase_22 AC 230 ms
56,696 KB
testcase_23 AC 234 ms
56,988 KB
testcase_24 AC 206 ms
54,160 KB
testcase_25 AC 268 ms
59,888 KB
testcase_26 AC 194 ms
54,356 KB
testcase_27 AC 142 ms
54,272 KB
testcase_28 AC 136 ms
54,104 KB
testcase_29 AC 196 ms
54,304 KB
testcase_30 AC 137 ms
54,048 KB
testcase_31 AC 137 ms
53,920 KB
testcase_32 AC 139 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static ArrayList<Unit> list = new ArrayList<>();
    static int[][] dp;
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int x = sc.nextInt();
    	int[] aArr = new int[n];
    	for (int i = 0; i < n; i++) {
    	    aArr[i] = sc.nextInt();
    	}
    	int sum = 0;
    	for (int i = 0; i < n; i++) {
    	    int y = sc.nextInt();
    	    if (aArr[i] < x) {
    	        list.add(new Unit(x - aArr[i], y));
    	    } else {
    	        sum += aArr[i] - x;
    	    }
    	}
    	if (list.size() == n) {
    	    System.out.println(-1);
    	    return;
    	}
    	int length = list.size();
    	dp = new int[length][sum + 1];
    	for (int[] arr : dp) {
    	    Arrays.fill(arr, Integer.MAX_VALUE);
    	}
    	System.out.println(dfw(length - 1, sum));
    }
    
    static int dfw(int idx, int sum) {
        if (sum < 0) {
            return Integer.MAX_VALUE / 10;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][sum] == Integer.MAX_VALUE) {
            dp[idx][sum] = Math.min(dfw(idx - 1, sum - list.get(idx).value), dfw(idx - 1, sum) + list.get(idx).cost);
        }
        return dp[idx][sum];
    }
    
    static class Unit {
        int value;
        int cost;
        
        public Unit(int value, int cost) {
            this.value = value;
            this.cost = cost;
        }
        
        
    }
}

0