結果

問題 No.37 遊園地のアトラクション
ユーザー 37zigen37zigen
提出日時 2016-03-25 19:08:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 723 bytes
コンパイル時間 7,896 ms
コンパイル使用メモリ 84,516 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-10-10 13:12:25
合計ジャッジ時間 8,758 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,464 KB
testcase_01 AC 124 ms
39,860 KB
testcase_02 AC 150 ms
41,392 KB
testcase_03 AC 146 ms
41,064 KB
testcase_04 AC 147 ms
41,292 KB
testcase_05 AC 149 ms
41,396 KB
testcase_06 AC 146 ms
41,496 KB
testcase_07 AC 152 ms
41,504 KB
testcase_08 AC 136 ms
41,264 KB
testcase_09 AC 136 ms
41,464 KB
testcase_10 AC 150 ms
41,456 KB
testcase_11 AC 149 ms
41,252 KB
testcase_12 AC 154 ms
41,144 KB
testcase_13 AC 147 ms
41,488 KB
testcase_14 AC 150 ms
41,640 KB
testcase_15 AC 145 ms
41,360 KB
testcase_16 AC 146 ms
41,436 KB
testcase_17 AC 144 ms
41,076 KB
testcase_18 AC 147 ms
41,180 KB
testcase_19 AC 133 ms
41,504 KB
testcase_20 AC 144 ms
41,192 KB
testcase_21 AC 155 ms
41,288 KB
testcase_22 AC 150 ms
41,512 KB
testcase_23 AC 132 ms
41,400 KB
testcase_24 AC 129 ms
41,328 KB
testcase_25 AC 130 ms
41,360 KB
testcase_26 AC 131 ms
40,936 KB
testcase_27 AC 146 ms
41,196 KB
testcase_28 AC 132 ms
41,188 KB
testcase_29 AC 141 ms
41,376 KB
testcase_30 AC 128 ms
41,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder037;
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();
		}
		solve(t,c,v);

	}
	public static 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];
			while(cur>0){
				for(int j=dp.length-1;j>=c[i];j--){
					dp[j]=Math.max(dp[j], dp[j-c[i]]+cur);
				}
				cur/=2;
			}
		}
		System.out.println(dp[t]);
	}

}
0