結果

問題 No.247 線形計画問題もどき
ユーザー htensaihtensai
提出日時 2020-02-07 11:45:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 760 ms / 2,000 ms
コード長 1,136 bytes
コンパイル時間 2,651 ms
コンパイル使用メモリ 78,592 KB
実行使用メモリ 50,824 KB
最終ジャッジ日時 2024-07-07 12:47:34
合計ジャッジ時間 6,754 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
42,268 KB
testcase_01 AC 48 ms
37,396 KB
testcase_02 AC 198 ms
44,308 KB
testcase_03 AC 47 ms
37,016 KB
testcase_04 AC 48 ms
37,280 KB
testcase_05 AC 47 ms
37,092 KB
testcase_06 AC 46 ms
36,852 KB
testcase_07 AC 50 ms
37,632 KB
testcase_08 AC 106 ms
43,788 KB
testcase_09 AC 48 ms
37,312 KB
testcase_10 AC 49 ms
37,856 KB
testcase_11 AC 49 ms
36,964 KB
testcase_12 AC 49 ms
37,296 KB
testcase_13 AC 49 ms
37,396 KB
testcase_14 AC 49 ms
37,248 KB
testcase_15 AC 49 ms
36,824 KB
testcase_16 AC 49 ms
36,972 KB
testcase_17 AC 186 ms
45,636 KB
testcase_18 AC 97 ms
42,112 KB
testcase_19 AC 210 ms
45,804 KB
testcase_20 AC 707 ms
50,280 KB
testcase_21 AC 48 ms
37,420 KB
testcase_22 AC 91 ms
40,744 KB
testcase_23 AC 48 ms
37,140 KB
testcase_24 AC 760 ms
50,824 KB
testcase_25 AC 462 ms
48,952 KB
testcase_26 AC 61 ms
37,616 KB
testcase_27 AC 59 ms
37,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int c = Integer.parseInt(br.readLine());
        int n = Integer.parseInt(br.readLine());
        int[] values = new int[n];
        String[] line = br.readLine().split(" ", n);
        for (int i = 0; i < n; i++) {
            values[i] = Integer.parseInt(line[i]);
        }
        Arrays.sort(values);
        int[] maxes = new int[c + 1];
        Arrays.fill(maxes, Integer.MAX_VALUE);
        TreeSet<Integer> next = new TreeSet<>();
        next.add(0);
        maxes[0] = 0;
        while (next.size() > 0) {
            int i = next.pollFirst();
            for (int j = 0; j < n && i + values[j] <= c; j++) {
                maxes[i + values[j]] = Math.min(maxes[i + values[j]], maxes[i] + 1);
                next.add(i + values[j]);
            }
        }
        if (maxes[c] == Integer.MAX_VALUE) {
            System.out.println(-1);
        } else {
            System.out.println(maxes[c]);
        }
   }
}
0