結果

問題 No.37 遊園地のアトラクション
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-18 12:14:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 195 ms / 5,000 ms
コード長 1,157 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 76,768 KB
実行使用メモリ 42,356 KB
最終ジャッジ日時 2024-10-10 13:19:28
合計ジャッジ時間 8,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
41,756 KB
testcase_01 AC 182 ms
41,632 KB
testcase_02 AC 163 ms
41,308 KB
testcase_03 AC 177 ms
41,640 KB
testcase_04 AC 189 ms
42,356 KB
testcase_05 AC 195 ms
42,252 KB
testcase_06 AC 176 ms
41,720 KB
testcase_07 AC 183 ms
42,356 KB
testcase_08 AC 150 ms
41,500 KB
testcase_09 AC 136 ms
41,548 KB
testcase_10 AC 188 ms
42,072 KB
testcase_11 AC 173 ms
41,900 KB
testcase_12 AC 149 ms
41,472 KB
testcase_13 AC 170 ms
41,688 KB
testcase_14 AC 154 ms
41,660 KB
testcase_15 AC 182 ms
41,820 KB
testcase_16 AC 174 ms
41,764 KB
testcase_17 AC 168 ms
41,800 KB
testcase_18 AC 178 ms
42,080 KB
testcase_19 AC 136 ms
41,520 KB
testcase_20 AC 189 ms
41,536 KB
testcase_21 AC 145 ms
41,468 KB
testcase_22 AC 171 ms
42,172 KB
testcase_23 AC 139 ms
41,292 KB
testcase_24 AC 138 ms
41,532 KB
testcase_25 AC 135 ms
41,444 KB
testcase_26 AC 148 ms
41,636 KB
testcase_27 AC 188 ms
42,096 KB
testcase_28 AC 170 ms
41,772 KB
testcase_29 AC 169 ms
41,888 KB
testcase_30 AC 172 ms
41,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int T = sc.nextInt();
    int N = sc.nextInt();
    int[] c = new int[N];
    int[] v = new int[N];
    for(int i = 0; i < N; i++) {
      c[i] = sc.nextInt();
    }
    for(int i = 0; i < N; i++) {
      v[i] = sc.nextInt();
    }
    // dp[i][j]はj時間以内にアトラクションiまで乗った場合の満足度の最大値を表す
    int[][] dp = new int[N][10001];
    for(int j = 0; j < 10001; j++) {
      int t = j;
      int va = v[0];
      while(t > 0 && va > 0) {
        t -= c[0];
        if(t >= 0) {
          dp[0][j] += va;
          va /= 2;
        }
      }
    }
    for(int i = 1; i < N; i++) {
      for(int j = 0; j < 10001; j++) {
        int t = j;
        int va = v[i];
        int sumv = 0;
        dp[i][j] = dp[i - 1][j];
        while(t > 0 && va > 0) {
          t -= c[i];
          if(t >= 0) {
            sumv += va;
            dp[i][j] = Math.max(dp[i][j], dp[i - 1][t] + sumv);
            va /= 2;
          }
        }
      }
    }
    System.out.println(dp[N - 1][T]);
  }
}
0