結果

問題 No.247 線形計画問題もどき
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-05 20:47:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 1,804 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 54,680 KB
最終ジャッジ日時 2024-07-07 12:08:33
合計ジャッジ時間 6,378 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,888 KB
testcase_01 AC 110 ms
53,800 KB
testcase_02 AC 150 ms
53,956 KB
testcase_03 AC 102 ms
52,992 KB
testcase_04 AC 109 ms
53,560 KB
testcase_05 AC 115 ms
54,124 KB
testcase_06 AC 109 ms
53,028 KB
testcase_07 AC 136 ms
54,300 KB
testcase_08 AC 114 ms
53,368 KB
testcase_09 AC 114 ms
54,216 KB
testcase_10 AC 120 ms
54,164 KB
testcase_11 AC 114 ms
54,072 KB
testcase_12 AC 103 ms
53,092 KB
testcase_13 AC 116 ms
54,244 KB
testcase_14 AC 117 ms
54,124 KB
testcase_15 AC 116 ms
54,180 KB
testcase_16 AC 109 ms
53,780 KB
testcase_17 AC 120 ms
52,992 KB
testcase_18 AC 126 ms
54,192 KB
testcase_19 AC 160 ms
54,440 KB
testcase_20 AC 144 ms
54,116 KB
testcase_21 AC 141 ms
54,680 KB
testcase_22 AC 139 ms
54,072 KB
testcase_23 AC 138 ms
54,296 KB
testcase_24 AC 147 ms
54,224 KB
testcase_25 AC 140 ms
54,264 KB
testcase_26 AC 120 ms
53,208 KB
testcase_27 AC 129 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  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();
    }
    // dp[i]はf=iの制約下でのΣxの最小値を表す(解がなければ-1とする)
    int[] dp = new int[C + 1];
    for(int i = 1; i < C + 1; i++) {
      int min = Integer.MAX_VALUE;
      for(int j = 0; j < N; j++) {
        if(a[j] <= i && dp[i - a[j]] != -1) min = Math.min(min, 1 + dp[i - a[j]]);
      }
      if(min == Integer.MAX_VALUE) min = -1;
      dp[i] = min;
    }
    System.out.println(dp[C]);
  }
}
0