結果

問題 No.247 線形計画問題もどき
ユーザー nCk_cvnCk_cv
提出日時 2015-08-01 16:58:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 865 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 78,312 KB
実行使用メモリ 109,600 KB
最終ジャッジ日時 2024-07-18 00:32:10
合計ジャッジ時間 7,017 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 109 ms
53,540 KB
testcase_02 AC 236 ms
109,600 KB
testcase_03 AC 116 ms
54,012 KB
testcase_04 AC 101 ms
52,760 KB
testcase_05 AC 110 ms
53,428 KB
testcase_06 AC 105 ms
52,756 KB
testcase_07 AC 150 ms
56,276 KB
testcase_08 AC 134 ms
54,192 KB
testcase_09 AC 141 ms
54,080 KB
testcase_10 AC 108 ms
53,116 KB
testcase_11 AC 111 ms
53,956 KB
testcase_12 AC 113 ms
54,060 KB
testcase_13 AC 112 ms
53,660 KB
testcase_14 AC 106 ms
53,968 KB
testcase_15 AC 129 ms
54,312 KB
testcase_16 AC 122 ms
54,004 KB
testcase_17 WA -
testcase_18 AC 126 ms
54,168 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 150 ms
58,896 KB
testcase_22 WA -
testcase_23 AC 148 ms
59,296 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 134 ms
62,344 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) {
					break;
				}
				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