結果

問題 No.1199 お菓子配り-2
ユーザー tentententen
提出日時 2020-08-29 10:13:05
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,140 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 78,060 KB
実行使用メモリ 71,284 KB
最終ジャッジ日時 2024-11-14 05:21:04
合計ジャッジ時間 64,197 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,056 KB
testcase_01 AC 130 ms
54,428 KB
testcase_02 AC 134 ms
54,324 KB
testcase_03 AC 928 ms
68,596 KB
testcase_04 TLE -
testcase_05 AC 349 ms
58,796 KB
testcase_06 AC 446 ms
59,308 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 946 ms
68,552 KB
testcase_10 AC 536 ms
59,084 KB
testcase_11 AC 851 ms
67,456 KB
testcase_12 AC 839 ms
65,720 KB
testcase_13 AC 601 ms
59,544 KB
testcase_14 AC 550 ms
59,452 KB
testcase_15 AC 523 ms
59,296 KB
testcase_16 TLE -
testcase_17 AC 854 ms
67,288 KB
testcase_18 TLE -
testcase_19 AC 652 ms
60,196 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 954 ms
68,656 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 591 ms
59,228 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static long[] snacks;
    static long[][] dp;
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
     	int m = sc.nextInt();
     	snacks = new long[n];
     	for (int i = 0; i < n; i++) {
     	    for (int j = 0; j < m; j++) {
     	        snacks[i] += sc.nextLong();
     	    }
     	}
     	dp = new long[n][2];
     	for (long[] arr : dp) {
     	    Arrays.fill(arr, Long.MIN_VALUE / 10);
     	}
     	System.out.println(Math.max(dfw(n - 1, 0), dfw(n - 1, 1)));
    }
    
    static long dfw(int idx, int evod) {
        if (idx < 0) {
            if (evod == 0) {
                return 0;
            } else {
                return Long.MIN_VALUE / 10;
            }
        }
        if (dp[idx][evod] == Long.MIN_VALUE / 10) {
            if (evod == 0) {
                dp[idx][evod] = Math.max(dfw(idx - 1, 0), dfw(idx - 1, 1) - snacks[idx]);
            } else {
                dp[idx][evod] = Math.max(dfw(idx - 1, 1), dfw(idx - 1, 0) + snacks[idx]);
            }
        }
        return dp[idx][evod];
    }
}
0