結果

問題 No.37 遊園地のアトラクション
ユーザー tentententen
提出日時 2020-10-23 08:58:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,220 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 77,204 KB
実行使用メモリ 41,912 KB
最終ジャッジ日時 2024-07-21 09:49:37
合計ジャッジ時間 6,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 101 ms
39,924 KB
testcase_02 AC 122 ms
41,136 KB
testcase_03 WA -
testcase_04 AC 127 ms
41,072 KB
testcase_05 AC 124 ms
41,268 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 129 ms
41,268 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 99 ms
39,856 KB
testcase_26 AC 115 ms
40,736 KB
testcase_27 AC 124 ms
41,264 KB
testcase_28 AC 102 ms
39,888 KB
testcase_29 WA -
testcase_30 AC 102 ms
40,168 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 && v > 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