結果

問題 No.37 遊園地のアトラクション
ユーザー tentententen
提出日時 2020-10-23 08:44:45
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,211 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 77,188 KB
実行使用メモリ 83,336 KB
最終ジャッジ日時 2024-07-21 09:49:02
合計ジャッジ時間 13,486 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
83,336 KB
testcase_01 AC 136 ms
41,368 KB
testcase_02 AC 164 ms
41,296 KB
testcase_03 AC 165 ms
41,320 KB
testcase_04 AC 164 ms
41,300 KB
testcase_05 AC 164 ms
41,284 KB
testcase_06 AC 158 ms
41,348 KB
testcase_07 AC 357 ms
41,996 KB
testcase_08 AC 140 ms
41,288 KB
testcase_09 AC 135 ms
41,300 KB
testcase_10 AC 283 ms
41,856 KB
testcase_11 AC 245 ms
41,140 KB
testcase_12 AC 155 ms
41,884 KB
testcase_13 AC 180 ms
41,716 KB
testcase_14 AC 144 ms
41,716 KB
testcase_15 AC 145 ms
41,176 KB
testcase_16 AC 198 ms
41,640 KB
testcase_17 AC 160 ms
41,572 KB
testcase_18 AC 276 ms
41,700 KB
testcase_19 AC 134 ms
41,380 KB
testcase_20 AC 178 ms
41,532 KB
testcase_21 AC 141 ms
41,340 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

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);
                 sum += v;
                 v /= 2;
                 t -= costs[idx];
             }
         }
         return dp[idx][time];
     }
}
0