結果

問題 No.2329 Nafmo、イカサマをする
ユーザー tentententen
提出日時 2023-05-30 15:08:48
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,358 bytes
コンパイル時間 3,054 ms
コンパイル使用メモリ 85,408 KB
実行使用メモリ 395,820 KB
最終ジャッジ日時 2024-06-08 20:12:19
合計ジャッジ時間 14,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,896 KB
testcase_01 AC 48 ms
36,840 KB
testcase_02 AC 47 ms
36,780 KB
testcase_03 AC 51 ms
37,032 KB
testcase_04 AC 50 ms
36,880 KB
testcase_05 AC 49 ms
36,668 KB
testcase_06 AC 49 ms
37,180 KB
testcase_07 AC 47 ms
37,020 KB
testcase_08 AC 169 ms
54,128 KB
testcase_09 AC 49 ms
37,092 KB
testcase_10 AC 48 ms
36,904 KB
testcase_11 AC 51 ms
36,912 KB
testcase_12 AC 51 ms
37,136 KB
testcase_13 AC 50 ms
37,256 KB
testcase_14 AC 49 ms
36,952 KB
testcase_15 AC 49 ms
37,048 KB
testcase_16 AC 57 ms
37,476 KB
testcase_17 AC 50 ms
37,172 KB
testcase_18 AC 52 ms
37,148 KB
testcase_19 AC 245 ms
64,588 KB
testcase_20 AC 56 ms
37,152 KB
testcase_21 AC 81 ms
39,252 KB
testcase_22 AC 78 ms
38,716 KB
testcase_23 AC 52 ms
36,888 KB
testcase_24 AC 49 ms
37,096 KB
testcase_25 AC 75 ms
38,496 KB
testcase_26 AC 51 ms
37,136 KB
testcase_27 AC 51 ms
37,096 KB
testcase_28 AC 50 ms
37,052 KB
testcase_29 AC 456 ms
91,264 KB
testcase_30 AC 68 ms
37,988 KB
testcase_31 AC 49 ms
36,776 KB
testcase_32 AC 48 ms
37,136 KB
testcase_33 AC 50 ms
37,136 KB
testcase_34 AC 53 ms
37,332 KB
testcase_35 AC 76 ms
39,748 KB
testcase_36 TLE -
testcase_37 AC 85 ms
39,976 KB
testcase_38 AC 81 ms
38,956 KB
testcase_39 TLE -
testcase_40 AC 1,340 ms
176,124 KB
testcase_41 TLE -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] values;
    static ArrayList<ArrayList<HashMap<Long, Long>>> dp = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long m = sc.nextLong();
        int k = sc.nextInt();
        values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
            dp.add(new ArrayList<>());
            for (int j = 0; j < k; j++) {
                dp.get(i).add(new HashMap<>());
            }
        }
        System.out.println(m - dfw(n - 1, k - 1, m));
    }
    
    static long dfw(int idx, int v, long w) {
        if (w < 0) {
            return Long.MAX_VALUE / 2;
        }
        if (v < 0 || idx < 0) {
            return w;
        }
        if (!dp.get(idx).get(v).containsKey(w)) {
            long ans = Math.min(w, Math.min(dfw(idx - 1, v, w), dfw(idx, v - 1, w - values[idx])));
            dp.get(idx).get(v).put(w, ans);
        }
        return dp.get(idx).get(v).get(w);
    }
}

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