結果

問題 No.1199 お菓子配り-2
ユーザー 小野寺健小野寺健
提出日時 2021-12-20 09:47:55
言語 Go
(1.22.1)
結果
AC  
実行時間 761 ms / 1,000 ms
コード長 994 bytes
コンパイル時間 13,530 ms
コンパイル使用メモリ 238,408 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-09-15 15:14:52
合計ジャッジ時間 40,085 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 238 ms
6,272 KB
testcase_04 AC 418 ms
9,728 KB
testcase_05 AC 14 ms
5,376 KB
testcase_06 AC 24 ms
5,376 KB
testcase_07 AC 201 ms
6,528 KB
testcase_08 AC 280 ms
6,272 KB
testcase_09 AC 167 ms
6,016 KB
testcase_10 AC 42 ms
5,376 KB
testcase_11 AC 131 ms
6,016 KB
testcase_12 AC 128 ms
6,016 KB
testcase_13 AC 44 ms
5,376 KB
testcase_14 AC 37 ms
5,376 KB
testcase_15 AC 31 ms
5,376 KB
testcase_16 AC 272 ms
6,144 KB
testcase_17 AC 132 ms
6,016 KB
testcase_18 AC 290 ms
9,600 KB
testcase_19 AC 75 ms
6,016 KB
testcase_20 AC 508 ms
9,344 KB
testcase_21 AC 313 ms
10,240 KB
testcase_22 AC 168 ms
9,216 KB
testcase_23 AC 235 ms
9,600 KB
testcase_24 AC 315 ms
9,600 KB
testcase_25 AC 48 ms
5,376 KB
testcase_26 AC 353 ms
7,424 KB
testcase_27 AC 285 ms
6,272 KB
testcase_28 AC 667 ms
10,368 KB
testcase_29 AC 662 ms
10,368 KB
testcase_30 AC 679 ms
10,368 KB
testcase_31 AC 670 ms
10,368 KB
testcase_32 AC 663 ms
10,368 KB
testcase_33 AC 666 ms
10,368 KB
testcase_34 AC 667 ms
10,368 KB
testcase_35 AC 666 ms
10,368 KB
testcase_36 AC 667 ms
10,368 KB
testcase_37 AC 663 ms
10,368 KB
testcase_38 AC 662 ms
10,368 KB
testcase_39 AC 669 ms
10,368 KB
testcase_40 AC 665 ms
10,368 KB
testcase_41 AC 761 ms
10,496 KB
testcase_42 AC 666 ms
10,368 KB
testcase_43 AC 668 ms
10,368 KB
testcase_44 AC 668 ms
10,368 KB
testcase_45 AC 662 ms
10,368 KB
testcase_46 AC 665 ms
10,368 KB
testcase_47 AC 757 ms
10,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"bufio"
	"os"
	"math"
)

func Max(a, b int) int {
	if a > b {
		return a
	} else {
		return b
	}
}

func Add(a, b int) int {
	if a == math.MinInt64 {
		return a
	} else {
		return a + b
	}
}

func main() {
	r := bufio.NewReader(os.Stdin)
	w := bufio.NewWriter(os.Stdout)
	defer w.Flush()
	var n, m int
	fmt.Fscan(r, &n, &m)
	a := make([]int, n)
	for i := 0; i < n; i++ {
		sum := 0
		for j := 0; j < m; j++ {
			var x int
			fmt.Fscan(r, &x)
			sum += x
		}
		a[i] = sum
	}
	dp := make([][]int, n+1)
	for i := 0; i <= n; i++ {
		dp[i] = make([]int, n+1)
		for j := 0; j <= n; j++ {
			dp[i][j] = math.MinInt64
		}
	}
	dp[0][0] = 0
	for i := 1; i <= n; i++ {
		dp[i][0] = 0
		for j := 1; j <= n; j++ {
			if j % 2 == 1 {
				dp[i][j] = Max(dp[i-1][j], Add(dp[i-1][j-1], a[i-1]))
			} else {
				dp[i][j] = Max(dp[i-1][j], Add(dp[i-1][j-1], -a[i-1]))
			}
		}
	}
	max := math.MinInt64
	for i := 0; i <= n; i++ {
		max = Max(max, dp[n][i])
	}
	fmt.Fprintln(w, max)
}
0