結果

問題 No.37 遊園地のアトラクション
ユーザー ぴろずぴろず
提出日時 2014-12-16 21:31:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 1,064 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 42,468 KB
最終ジャッジ日時 2024-10-10 12:52:23
合計ジャッジ時間 7,863 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
41,736 KB
testcase_01 AC 127 ms
41,404 KB
testcase_02 AC 145 ms
41,456 KB
testcase_03 AC 166 ms
41,900 KB
testcase_04 AC 159 ms
41,772 KB
testcase_05 AC 164 ms
41,272 KB
testcase_06 AC 160 ms
41,344 KB
testcase_07 AC 176 ms
42,092 KB
testcase_08 AC 129 ms
40,380 KB
testcase_09 AC 137 ms
41,060 KB
testcase_10 AC 173 ms
42,300 KB
testcase_11 AC 178 ms
42,196 KB
testcase_12 AC 171 ms
41,640 KB
testcase_13 AC 167 ms
41,120 KB
testcase_14 AC 157 ms
41,588 KB
testcase_15 AC 148 ms
41,820 KB
testcase_16 AC 166 ms
41,732 KB
testcase_17 AC 166 ms
41,636 KB
testcase_18 AC 153 ms
42,092 KB
testcase_19 AC 132 ms
41,368 KB
testcase_20 AC 166 ms
41,616 KB
testcase_21 AC 159 ms
41,540 KB
testcase_22 AC 176 ms
42,468 KB
testcase_23 AC 130 ms
41,288 KB
testcase_24 AC 136 ms
41,048 KB
testcase_25 AC 118 ms
39,912 KB
testcase_26 AC 129 ms
41,004 KB
testcase_27 AC 148 ms
41,760 KB
testcase_28 AC 132 ms
40,952 KB
testcase_29 AC 165 ms
41,568 KB
testcase_30 AC 131 ms
40,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no037;

import java.util.Scanner;

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];
		int[][] v2 = new int[n][10];
		for(int i=0;i<n;i++) {
			c[i] = sc.nextInt();
		}
		for(int i=0;i<n;i++) {
			v[i] = sc.nextInt();
		}
		for(int i=0;i<n;i++) {
			for(int j=1;j<10;j++) {
				v2[i][j] = v2[i][j-1] + (v[i] >> (j-1));
			}
		}
//		System.out.println(Arrays.deepToString(v2));
		int[][] dp = new int[n+1][t+1];
		for(int i=1;i<=n;i++) {
			for(int j=1;j<=t;j++) {
				dp[i][j] = dp[i-1][j];
				for(int k=1;k<10;k++) {
					int j2 = j - c[i-1] * k;
					if (j2 < 0) {
						break;
					}
					dp[i][j] = Math.max(dp[i][j], dp[i-1][j2] + v2[i-1][k]);
				}
			}
		}
//		System.out.println(Arrays.deepToString(dp));
		int ans = 0;
		for(int i=1;i<=n;i++) {
			for(int j=1;j<=t;j++) {
				ans = Math.max(ans, dp[i][j]);
			}
		}
		System.out.println(ans);
	}

}
0