結果

問題 No.37 遊園地のアトラクション
ユーザー scachescache
提出日時 2014-10-09 23:53:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 749 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 77,896 KB
実行使用メモリ 50,116 KB
最終ジャッジ日時 2024-10-10 12:48:10
合計ジャッジ時間 8,049 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
48,284 KB
testcase_01 AC 135 ms
48,280 KB
testcase_02 AC 148 ms
48,168 KB
testcase_03 AC 148 ms
48,160 KB
testcase_04 AC 148 ms
48,392 KB
testcase_05 AC 151 ms
47,968 KB
testcase_06 AC 150 ms
48,276 KB
testcase_07 AC 151 ms
48,252 KB
testcase_08 AC 137 ms
48,108 KB
testcase_09 AC 133 ms
48,500 KB
testcase_10 AC 150 ms
48,332 KB
testcase_11 AC 147 ms
48,388 KB
testcase_12 AC 148 ms
47,980 KB
testcase_13 AC 148 ms
48,392 KB
testcase_14 AC 148 ms
48,208 KB
testcase_15 AC 150 ms
48,068 KB
testcase_16 AC 149 ms
48,160 KB
testcase_17 AC 147 ms
48,240 KB
testcase_18 AC 153 ms
48,168 KB
testcase_19 AC 132 ms
48,220 KB
testcase_20 AC 152 ms
48,040 KB
testcase_21 AC 147 ms
48,376 KB
testcase_22 AC 153 ms
48,372 KB
testcase_23 AC 130 ms
48,044 KB
testcase_24 AC 131 ms
48,144 KB
testcase_25 AC 133 ms
48,056 KB
testcase_26 AC 133 ms
50,116 KB
testcase_27 AC 151 ms
41,776 KB
testcase_28 AC 132 ms
41,532 KB
testcase_29 AC 137 ms
41,364 KB
testcase_30 AC 134 ms
41,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Main p = new Main();
	}

	public Main() {
		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();
		
		solve(t, c, v);
	}

	private void solve(int t, int[] c, int[] v) {
		int[] dp = new int[t+1];
		
		for(int i=0;i<c.length;i++){
			int cur = v[i];
			int count = 1;
			while(cur>0){
				for(int j=dp.length-1;j>=c[i]*count;j--){
					dp[j] = Math.max(dp[j], dp[j-c[i]]+cur);
				}
				cur /= 2;
			}
		}
		
		System.out.println(dp[t]);
	}
}
0