結果

問題 No.1117 数列分割
ユーザー tentententen
提出日時 2020-08-18 06:47:07
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 958 bytes
コンパイル時間 2,332 ms
コンパイル使用メモリ 77,652 KB
実行使用メモリ 81,580 KB
最終ジャッジ日時 2024-10-11 19:10:41
合計ジャッジ時間 12,308 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
46,368 KB
testcase_01 AC 134 ms
41,288 KB
testcase_02 AC 135 ms
41,620 KB
testcase_03 AC 307 ms
47,996 KB
testcase_04 AC 566 ms
48,020 KB
testcase_05 AC 118 ms
40,348 KB
testcase_06 AC 152 ms
41,856 KB
testcase_07 AC 158 ms
41,748 KB
testcase_08 AC 1,130 ms
47,776 KB
testcase_09 AC 444 ms
43,820 KB
testcase_10 AC 1,383 ms
47,648 KB
testcase_11 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int m;
    static int[] arr;
    static long[][] dp;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		m = sc.nextInt();
		arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		}
		dp = new long[n][k];
		System.out.println(dfw(n - 1, k - 1));
    }
    
    static long dfw(int idx, int block) {
        if (idx < 0 && block < 0) {
            return 0;
        }
        if (block < 0) {
            return Long.MIN_VALUE;
        }
        if (dp[idx][block] != 0) {
            return dp[idx][block];
        }
        long max = 0;
        long sum = 0;
        for (int i = 0; i < m && i <= idx - block; i++) {
            sum += arr[idx - i];
            max = Math.max(max, Math.abs(sum) + dfw(idx - 1 - i, block - 1));
        }
        dp[idx][block] = max;
        return max;
    }

}

0