結果

問題 No.37 遊園地のアトラクション
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-18 12:12:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,051 ms / 5,000 ms
コード長 1,137 bytes
コンパイル時間 2,470 ms
コンパイル使用メモリ 77,644 KB
実行使用メモリ 42,272 KB
最終ジャッジ日時 2024-10-10 13:20:51
合計ジャッジ時間 12,271 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
40,932 KB
testcase_01 AC 191 ms
41,764 KB
testcase_02 AC 225 ms
42,272 KB
testcase_03 AC 185 ms
41,176 KB
testcase_04 AC 296 ms
41,752 KB
testcase_05 AC 250 ms
41,568 KB
testcase_06 AC 178 ms
41,400 KB
testcase_07 AC 244 ms
41,964 KB
testcase_08 AC 177 ms
41,328 KB
testcase_09 AC 146 ms
41,064 KB
testcase_10 AC 275 ms
41,924 KB
testcase_11 AC 213 ms
41,584 KB
testcase_12 AC 192 ms
41,528 KB
testcase_13 AC 209 ms
41,396 KB
testcase_14 AC 179 ms
41,420 KB
testcase_15 AC 218 ms
41,704 KB
testcase_16 AC 210 ms
41,500 KB
testcase_17 AC 187 ms
41,584 KB
testcase_18 AC 268 ms
41,840 KB
testcase_19 AC 144 ms
41,456 KB
testcase_20 AC 195 ms
41,140 KB
testcase_21 AC 163 ms
41,528 KB
testcase_22 AC 2,051 ms
41,580 KB
testcase_23 AC 340 ms
41,328 KB
testcase_24 AC 231 ms
41,108 KB
testcase_25 AC 230 ms
41,324 KB
testcase_26 AC 263 ms
41,076 KB
testcase_27 AC 297 ms
41,680 KB
testcase_28 AC 194 ms
41,268 KB
testcase_29 AC 334 ms
41,648 KB
testcase_30 AC 207 ms
41,744 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) {
        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) {
          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