結果

問題 No.247 線形計画問題もどき
ユーザー nCk_cvnCk_cv
提出日時 2015-08-01 17:06:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 41,852 KB
最終ジャッジ日時 2024-07-07 11:09:29
合計ジャッジ時間 6,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,588 KB
testcase_01 AC 107 ms
41,036 KB
testcase_02 AC 166 ms
41,704 KB
testcase_03 AC 119 ms
41,108 KB
testcase_04 AC 105 ms
41,288 KB
testcase_05 AC 122 ms
41,196 KB
testcase_06 AC 119 ms
41,160 KB
testcase_07 AC 115 ms
41,644 KB
testcase_08 AC 128 ms
41,664 KB
testcase_09 AC 126 ms
41,216 KB
testcase_10 AC 129 ms
41,852 KB
testcase_11 AC 122 ms
41,008 KB
testcase_12 AC 126 ms
41,312 KB
testcase_13 AC 124 ms
41,148 KB
testcase_14 AC 125 ms
41,104 KB
testcase_15 AC 122 ms
41,216 KB
testcase_16 AC 119 ms
41,124 KB
testcase_17 AC 123 ms
41,496 KB
testcase_18 AC 116 ms
41,180 KB
testcase_19 AC 147 ms
41,424 KB
testcase_20 AC 154 ms
41,776 KB
testcase_21 AC 129 ms
41,412 KB
testcase_22 AC 136 ms
41,504 KB
testcase_23 AC 130 ms
41,176 KB
testcase_24 AC 150 ms
41,480 KB
testcase_25 AC 149 ms
41,432 KB
testcase_26 AC 135 ms
41,556 KB
testcase_27 AC 136 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static int INF = 2 << 27;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int c = sc.nextInt();
		int n = sc.nextInt();
		int[] a = new int[n];
		for(int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		
		int[] dp = new int[c+1];
		Arrays.fill(dp, INF);
		dp[0] = 0;
		
		
		
		
		for(int i = 0; i < n; i++) {
			for(int j = 0; j <= c; j++) {
				if(dp[j] == INF) {
					continue;
				}
				if(j + a[i] > c) {
					break;
				}
				
				dp[j + a[i]] = Math.min((dp[j] + 1),dp[j + a[i]]);
			}
		}
		int min = dp[c];
		if(min == INF) {
			min = -1;
		}
		System.out.println(min);
		
		
		
		
	}
}
0