結果

問題 No.37 遊園地のアトラクション
ユーザー htensaihtensai
提出日時 2019-12-07 10:38:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 1,053 bytes
コンパイル時間 3,120 ms
コンパイル使用メモリ 77,252 KB
実行使用メモリ 42,036 KB
最終ジャッジ日時 2024-10-10 13:36:24
合計ジャッジ時間 7,447 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,448 KB
testcase_01 AC 117 ms
39,996 KB
testcase_02 AC 151 ms
41,180 KB
testcase_03 AC 152 ms
41,528 KB
testcase_04 AC 130 ms
40,948 KB
testcase_05 AC 156 ms
41,060 KB
testcase_06 AC 116 ms
40,352 KB
testcase_07 AC 143 ms
41,676 KB
testcase_08 AC 131 ms
41,364 KB
testcase_09 AC 119 ms
39,768 KB
testcase_10 AC 147 ms
41,584 KB
testcase_11 AC 148 ms
42,036 KB
testcase_12 AC 149 ms
41,244 KB
testcase_13 AC 145 ms
41,048 KB
testcase_14 AC 114 ms
39,868 KB
testcase_15 AC 131 ms
41,284 KB
testcase_16 AC 154 ms
41,604 KB
testcase_17 AC 147 ms
41,200 KB
testcase_18 AC 148 ms
41,664 KB
testcase_19 AC 116 ms
39,992 KB
testcase_20 AC 148 ms
41,628 KB
testcase_21 AC 115 ms
40,084 KB
testcase_22 AC 131 ms
41,784 KB
testcase_23 AC 129 ms
41,036 KB
testcase_24 AC 130 ms
41,156 KB
testcase_25 AC 130 ms
41,200 KB
testcase_26 AC 129 ms
40,908 KB
testcase_27 AC 151 ms
41,324 KB
testcase_28 AC 128 ms
40,768 KB
testcase_29 AC 135 ms
40,884 KB
testcase_30 AC 137 ms
40,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int t;
    static int n;
    static int[] tArr;
    static int[] vArr;
    static int[][] dp;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		t = sc.nextInt();
		n = sc.nextInt();
		tArr = new int[n + 1];
		for (int i = 1; i <= n; i++) {
		    tArr[i] = sc.nextInt();
		}
		vArr = new int[n + 1];
		for (int i = 1; i <= n; i++) {
		    vArr[i] = sc.nextInt();
		}
		dp = new int[n + 1][t + 1];
		System.out.println(dfw(n, t));
   }
   
   static int dfw(int idx, int time) {
       if (idx == 0) {
           return 0;
       }
       if (dp[idx][time] != 0) {
           return dp[idx][time];
       }
       int value = vArr[idx];
       int total = 0;
       for (int i = 0; i * tArr[idx] <= time ; i++) {
           dp[idx][time] = Math.max(dp[idx][time], total + dfw(idx - 1, time - i * tArr[idx]));
           if (value <= 0) {
               break;
           }
           total += value;
           value /= 2;
       }
       return dp[idx][time];
   }
}

0