結果

問題 No.37 遊園地のアトラクション
ユーザー tentententen
提出日時 2021-12-02 16:12:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 1,985 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 78,252 KB
実行使用メモリ 38,492 KB
最終ジャッジ日時 2024-07-05 01:58:13
合計ジャッジ時間 5,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,896 KB
testcase_01 AC 49 ms
36,896 KB
testcase_02 AC 59 ms
36,992 KB
testcase_03 AC 53 ms
37,188 KB
testcase_04 AC 59 ms
37,148 KB
testcase_05 AC 64 ms
37,332 KB
testcase_06 AC 53 ms
37,116 KB
testcase_07 AC 78 ms
37,880 KB
testcase_08 AC 51 ms
36,864 KB
testcase_09 AC 50 ms
36,948 KB
testcase_10 AC 78 ms
38,040 KB
testcase_11 AC 60 ms
37,244 KB
testcase_12 AC 56 ms
37,240 KB
testcase_13 AC 52 ms
37,176 KB
testcase_14 AC 51 ms
37,192 KB
testcase_15 AC 61 ms
37,496 KB
testcase_16 AC 60 ms
37,528 KB
testcase_17 AC 55 ms
37,016 KB
testcase_18 AC 79 ms
38,492 KB
testcase_19 AC 51 ms
36,944 KB
testcase_20 AC 60 ms
36,992 KB
testcase_21 AC 50 ms
36,860 KB
testcase_22 AC 54 ms
37,348 KB
testcase_23 AC 49 ms
37,072 KB
testcase_24 AC 49 ms
36,904 KB
testcase_25 AC 50 ms
36,716 KB
testcase_26 AC 50 ms
36,948 KB
testcase_27 AC 61 ms
37,112 KB
testcase_28 AC 51 ms
36,720 KB
testcase_29 AC 60 ms
36,992 KB
testcase_30 AC 50 ms
37,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static int[] costs;
    static int[] values;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int time = 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][time + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(n - 1, time));
    }
    
    static int dfw(int idx, int t) {
        if (t < 0) {
            return Integer.MIN_VALUE;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][t] < 0) {
            dp[idx][t] = dfw(idx - 1, t);
            int sum = 0;
            int rate = 1;
            int total = 0;
            while (sum <= t && rate <= values[idx]) {
                sum += costs[idx];
                total += values[idx] / rate;
                rate *= 2;
                dp[idx][t] = Math.max(dp[idx][t], dfw(idx - 1, t - sum) + total);
            }
        }
        return dp[idx][t];
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0