結果

問題 No.1199 お菓子配り-2
ユーザー tentententen
提出日時 2020-08-29 10:16:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 593 ms / 1,000 ms
コード長 1,355 bytes
コンパイル時間 2,383 ms
コンパイル使用メモリ 78,360 KB
実行使用メモリ 61,096 KB
最終ジャッジ日時 2024-11-14 05:23:35
合計ジャッジ時間 25,468 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,300 KB
testcase_01 AC 54 ms
50,288 KB
testcase_02 AC 53 ms
50,280 KB
testcase_03 AC 293 ms
57,368 KB
testcase_04 AC 438 ms
58,360 KB
testcase_05 AC 123 ms
54,100 KB
testcase_06 AC 139 ms
54,272 KB
testcase_07 AC 326 ms
57,580 KB
testcase_08 AC 361 ms
58,140 KB
testcase_09 AC 314 ms
57,236 KB
testcase_10 AC 178 ms
55,780 KB
testcase_11 AC 271 ms
56,876 KB
testcase_12 AC 254 ms
56,608 KB
testcase_13 AC 170 ms
54,952 KB
testcase_14 AC 168 ms
55,452 KB
testcase_15 AC 156 ms
54,888 KB
testcase_16 AC 371 ms
58,172 KB
testcase_17 AC 310 ms
56,804 KB
testcase_18 AC 421 ms
58,488 KB
testcase_19 AC 226 ms
56,472 KB
testcase_20 AC 458 ms
58,832 KB
testcase_21 AC 413 ms
58,484 KB
testcase_22 AC 335 ms
56,968 KB
testcase_23 AC 376 ms
57,852 KB
testcase_24 AC 430 ms
58,384 KB
testcase_25 AC 185 ms
55,188 KB
testcase_26 AC 393 ms
58,360 KB
testcase_27 AC 361 ms
58,536 KB
testcase_28 AC 568 ms
59,712 KB
testcase_29 AC 574 ms
59,056 KB
testcase_30 AC 556 ms
59,252 KB
testcase_31 AC 550 ms
59,192 KB
testcase_32 AC 589 ms
59,848 KB
testcase_33 AC 576 ms
59,376 KB
testcase_34 AC 576 ms
59,184 KB
testcase_35 AC 579 ms
59,944 KB
testcase_36 AC 589 ms
58,988 KB
testcase_37 AC 574 ms
61,096 KB
testcase_38 AC 574 ms
59,216 KB
testcase_39 AC 568 ms
60,592 KB
testcase_40 AC 580 ms
58,844 KB
testcase_41 AC 574 ms
59,372 KB
testcase_42 AC 568 ms
59,196 KB
testcase_43 AC 568 ms
59,296 KB
testcase_44 AC 593 ms
60,912 KB
testcase_45 AC 583 ms
59,384 KB
testcase_46 AC 553 ms
59,632 KB
testcase_47 AC 568 ms
59,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static long[] snacks;
    static long[][] dp;
	public static void main (String[] args) throws Exception{
    	BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    	String[] first = br.readLine().split(" ", 2);
    	int n = Integer.parseInt(first[0]);
     	int m = Integer.parseInt(first[1]);
     	snacks = new long[n];
     	for (int i = 0; i < n; i++) {
     	    String[] line = br.readLine().split(" ", m);
     	    for (int j = 0; j < m; j++) {
     	        snacks[i] += Long.parseLong(line[j]);
     	    }
     	}
     	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