結果

問題 No.37 遊園地のアトラクション
ユーザー tentententen
提出日時 2020-10-23 09:00:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 1,289 bytes
コンパイル時間 2,729 ms
コンパイル使用メモリ 77,256 KB
実行使用メモリ 42,044 KB
最終ジャッジ日時 2024-10-10 13:44:29
合計ジャッジ時間 8,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,068 KB
testcase_01 AC 118 ms
40,132 KB
testcase_02 AC 141 ms
41,152 KB
testcase_03 AC 127 ms
40,908 KB
testcase_04 AC 150 ms
41,576 KB
testcase_05 AC 137 ms
41,072 KB
testcase_06 AC 131 ms
41,848 KB
testcase_07 AC 141 ms
41,528 KB
testcase_08 AC 138 ms
41,200 KB
testcase_09 AC 137 ms
41,412 KB
testcase_10 AC 132 ms
41,136 KB
testcase_11 AC 134 ms
41,312 KB
testcase_12 AC 135 ms
41,180 KB
testcase_13 AC 137 ms
41,536 KB
testcase_14 AC 130 ms
41,028 KB
testcase_15 AC 139 ms
41,144 KB
testcase_16 AC 126 ms
40,996 KB
testcase_17 AC 146 ms
41,352 KB
testcase_18 AC 141 ms
41,528 KB
testcase_19 AC 119 ms
39,764 KB
testcase_20 AC 148 ms
41,476 KB
testcase_21 AC 137 ms
41,200 KB
testcase_22 AC 154 ms
42,044 KB
testcase_23 AC 136 ms
41,404 KB
testcase_24 AC 135 ms
41,164 KB
testcase_25 AC 115 ms
40,048 KB
testcase_26 AC 119 ms
40,096 KB
testcase_27 AC 166 ms
41,528 KB
testcase_28 AC 117 ms
40,236 KB
testcase_29 AC 126 ms
40,900 KB
testcase_30 AC 132 ms
41,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int[] costs;
    static int[] values;
    static int[][] dp;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int t = sc.nextInt();
        int n = sc.nextInt();
        costs = new int[n];
        for (int i = 0; i < n; i++) {
            costs[i] = sc.nextInt();
        }
        values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        dp = new int[n][t + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(n - 1, t));
     }
     
     static int dfw(int idx, int time) {
         if (time < 0) {
             return Integer.MIN_VALUE;
         }
         if (idx < 0) {
             return 0;
         }
         if (dp[idx][time] < 0) {
             int v = values[idx];
             int t = time;
             int sum = 0;
             while (t >= 0) {
                 dp[idx][time] = Math.max(dp[idx][time], dfw(idx - 1, t) + sum);
                 if (v == 0) {
                     break;
                 }
                 sum += v;
                 v /= 2;
                 t -= costs[idx];
             }
         }
         return dp[idx][time];
     }
}
0