結果

問題 No.385 カップ麺生活
ユーザー tentententen
提出日時 2023-04-04 17:27:59
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,719 bytes
コンパイル時間 3,353 ms
コンパイル使用メモリ 91,264 KB
実行使用メモリ 63,360 KB
最終ジャッジ日時 2024-04-08 16:56:46
合計ジャッジ時間 8,125 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
53,956 KB
testcase_01 AC 56 ms
53,968 KB
testcase_02 AC 56 ms
53,980 KB
testcase_03 AC 56 ms
53,980 KB
testcase_04 AC 460 ms
55,528 KB
testcase_05 AC 58 ms
53,992 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] dp;
    static int[] values;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int m = sc.nextInt();
        int n = sc.nextInt();
        values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        dp = new int[n][m + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        int[] counts = new int[m + 1];
        int max = 0;
        for (int i = 1; i <= m; i++) {
            counts[i] = Math.max(0, dfw(n - 1, i));
            max = Math.max(max, counts[i]);
        }
        long ans = 0;
        boolean[] isNotPrimes = new boolean[m + 1];
        for (int i = 2; i < m; i++) {
            if (!isNotPrimes[i]) {
                ans += counts[m - i];
                for (int j = 2; j * i <= m; j++) {
                    isNotPrimes[j * i] = true;
                }
            }
        }
        ans += max;
        System.out.println(ans);
    }
    
    static int dfw(int idx, int v) {
        if (v < 0) {
            return Integer.MIN_VALUE;
        }
        if (v == 0) {
            return 0;
        }
        if (idx < 0) {
            return Integer.MIN_VALUE;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = Math.max(dfw(idx - 1, v), dfw(idx, v - values[idx]) + 1);
        }
        return dp[idx][v];
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0