結果

問題 No.1522 Unfairness
ユーザー tentententen
提出日時 2023-04-25 17:36:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 2,283 bytes
コンパイル時間 2,864 ms
コンパイル使用メモリ 84,504 KB
実行使用メモリ 85,208 KB
最終ジャッジ日時 2024-11-14 13:45:09
合計ジャッジ時間 8,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,724 KB
testcase_01 AC 56 ms
50,576 KB
testcase_02 AC 55 ms
50,388 KB
testcase_03 AC 173 ms
62,644 KB
testcase_04 AC 111 ms
55,516 KB
testcase_05 AC 95 ms
52,080 KB
testcase_06 AC 83 ms
52,056 KB
testcase_07 AC 215 ms
66,180 KB
testcase_08 AC 218 ms
66,620 KB
testcase_09 AC 84 ms
51,784 KB
testcase_10 AC 130 ms
58,264 KB
testcase_11 AC 112 ms
55,684 KB
testcase_12 AC 145 ms
58,348 KB
testcase_13 AC 266 ms
76,760 KB
testcase_14 AC 91 ms
52,312 KB
testcase_15 AC 414 ms
85,008 KB
testcase_16 AC 413 ms
84,984 KB
testcase_17 AC 415 ms
85,144 KB
testcase_18 AC 410 ms
85,092 KB
testcase_19 AC 413 ms
85,040 KB
testcase_20 AC 155 ms
85,208 KB
testcase_21 AC 55 ms
50,636 KB
testcase_22 AC 54 ms
50,580 KB
testcase_23 AC 55 ms
50,540 KB
testcase_24 AC 55 ms
50,420 KB
testcase_25 AC 54 ms
50,728 KB
testcase_26 AC 55 ms
50,872 KB
testcase_27 AC 53 ms
50,732 KB
testcase_28 AC 54 ms
50,564 KB
testcase_29 AC 55 ms
50,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] values;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        values = new int[n + 1];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        values[n] = -10000000;
        Arrays.sort(values);
        dp = new int[n + 1][m + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(n, m));
    }
    
    static int dfw(int idx, int v) {
        if (v < 0) {
            return Integer.MIN_VALUE;
        }
        if (idx <= 1) {
            return 0;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = Math.max(dfw(idx - 1, v), Math.max(dfw(idx - 2, v - (values[idx] - values[idx - 1])) + values[idx], dfw(idx - 3, v - (values[idx] - values[idx - 2])) + values[idx]));
        }
        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