結果

問題 No.37 遊園地のアトラクション
ユーザー tentententen
提出日時 2021-11-10 09:56:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 1,996 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 78,028 KB
実行使用メモリ 51,184 KB
最終ジャッジ日時 2024-11-20 18:35:47
合計ジャッジ時間 5,340 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,268 KB
testcase_01 AC 50 ms
50,504 KB
testcase_02 AC 63 ms
50,320 KB
testcase_03 AC 52 ms
50,404 KB
testcase_04 AC 59 ms
50,292 KB
testcase_05 AC 62 ms
50,496 KB
testcase_06 AC 52 ms
50,500 KB
testcase_07 AC 70 ms
50,428 KB
testcase_08 AC 49 ms
50,588 KB
testcase_09 AC 50 ms
50,412 KB
testcase_10 AC 77 ms
51,184 KB
testcase_11 AC 60 ms
50,704 KB
testcase_12 AC 56 ms
50,376 KB
testcase_13 AC 50 ms
50,044 KB
testcase_14 AC 51 ms
50,420 KB
testcase_15 AC 60 ms
50,464 KB
testcase_16 AC 61 ms
50,388 KB
testcase_17 AC 52 ms
50,252 KB
testcase_18 AC 77 ms
51,100 KB
testcase_19 AC 53 ms
50,260 KB
testcase_20 AC 61 ms
50,588 KB
testcase_21 AC 50 ms
50,404 KB
testcase_22 AC 54 ms
50,108 KB
testcase_23 AC 52 ms
50,388 KB
testcase_24 AC 52 ms
50,404 KB
testcase_25 AC 53 ms
50,256 KB
testcase_26 AC 54 ms
50,440 KB
testcase_27 AC 64 ms
50,676 KB
testcase_28 AC 52 ms
50,316 KB
testcase_29 AC 58 ms
50,388 KB
testcase_30 AC 50 ms
50,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] dp;
    static int[] costs;
    static int[] values;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        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];
        System.out.println(dfw(n - 1, t));
    }
    
    static int dfw(int idx, int t) {
        if (t < 0) {
            return Integer.MIN_VALUE;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][t] == 0) {
            int time = costs[idx];
            int atract = values[idx];
            int sum = atract;
            dp[idx][t] = dfw(idx - 1, t);
            while (time <= t && atract > 0) {
                dp[idx][t] = Math.max(dp[idx][t], dfw(idx - 1, t - time) + sum);
                time += costs[idx];
                atract /= 2;
                sum += atract;
            }
        }
        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 nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0