結果

問題 No.247 線形計画問題もどき
ユーザー nCk_cvnCk_cv
提出日時 2015-08-01 17:00:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 77,196 KB
実行使用メモリ 95,744 KB
最終ジャッジ日時 2024-07-07 11:09:09
合計ジャッジ時間 8,046 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
55,980 KB
testcase_01 AC 130 ms
41,040 KB
testcase_02 AC 285 ms
95,744 KB
testcase_03 AC 135 ms
41,064 KB
testcase_04 AC 136 ms
40,996 KB
testcase_05 AC 138 ms
40,988 KB
testcase_06 AC 133 ms
41,312 KB
testcase_07 AC 169 ms
42,780 KB
testcase_08 AC 141 ms
41,656 KB
testcase_09 AC 133 ms
41,280 KB
testcase_10 AC 138 ms
41,628 KB
testcase_11 AC 135 ms
41,392 KB
testcase_12 AC 130 ms
41,248 KB
testcase_13 AC 129 ms
40,968 KB
testcase_14 AC 131 ms
41,300 KB
testcase_15 AC 132 ms
41,120 KB
testcase_16 AC 135 ms
41,356 KB
testcase_17 AC 187 ms
51,816 KB
testcase_18 AC 143 ms
41,824 KB
testcase_19 AC 239 ms
74,140 KB
testcase_20 AC 252 ms
73,928 KB
testcase_21 AC 177 ms
48,028 KB
testcase_22 AC 188 ms
52,024 KB
testcase_23 AC 179 ms
48,280 KB
testcase_24 AC 253 ms
74,312 KB
testcase_25 AC 224 ms
65,360 KB
testcase_26 AC 178 ms
47,560 KB
testcase_27 AC 178 ms
52,216 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[n][c+1];
		for(int i = 0; i < n; i++) {
			Arrays.fill(dp[i], INF);
			dp[i][0] = 0;
		}
		
		
		
		
		for(int i = 0; i < n; i++) {
			for(int j = 0; j <= c; j++) {
				if(i != 0) {
					dp[i][j] = Math.min(dp[i-1][j],dp[i][j]);
				}
				if(dp[i][j] == INF) {
					continue;
				}
				if(j + a[i] > c) {
					continue;
				}
				dp[i][j + a[i]] = Math.min((dp[i][j] + 1),dp[i][j + a[i]]);
			}
		}
		int min = INF;
		for(int i = 0; i < n; i++) {
			min = Math.min(dp[i][c], min);
		}
		if(min == INF) {
			min = -1;
		}
		System.out.println(min);
		
		
		
		
	}
}
0