結果

問題 No.1199 お菓子配り-2
ユーザー donutholedonuthole
提出日時 2020-08-29 00:43:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 981 ms / 1,000 ms
コード長 1,008 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 51,840 KB
最終ジャッジ日時 2024-11-14 04:20:05
合計ジャッジ時間 31,687 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
11,264 KB
testcase_01 AC 34 ms
11,392 KB
testcase_02 AC 34 ms
11,264 KB
testcase_03 AC 304 ms
21,376 KB
testcase_04 AC 736 ms
36,864 KB
testcase_05 AC 41 ms
12,160 KB
testcase_06 AC 49 ms
12,800 KB
testcase_07 AC 249 ms
23,552 KB
testcase_08 AC 312 ms
28,288 KB
testcase_09 AC 191 ms
21,504 KB
testcase_10 AC 72 ms
13,824 KB
testcase_11 AC 157 ms
19,200 KB
testcase_12 AC 125 ms
19,072 KB
testcase_13 AC 61 ms
13,824 KB
testcase_14 AC 72 ms
13,440 KB
testcase_15 AC 60 ms
13,184 KB
testcase_16 AC 287 ms
27,520 KB
testcase_17 AC 230 ms
19,072 KB
testcase_18 AC 655 ms
29,184 KB
testcase_19 AC 184 ms
15,744 KB
testcase_20 AC 746 ms
42,112 KB
testcase_21 AC 743 ms
30,720 KB
testcase_22 AC 534 ms
21,248 KB
testcase_23 AC 612 ms
25,472 KB
testcase_24 AC 670 ms
31,232 KB
testcase_25 AC 72 ms
14,336 KB
testcase_26 AC 441 ms
33,152 KB
testcase_27 AC 309 ms
29,056 KB
testcase_28 AC 967 ms
51,712 KB
testcase_29 AC 969 ms
51,712 KB
testcase_30 AC 974 ms
51,712 KB
testcase_31 AC 976 ms
51,840 KB
testcase_32 AC 972 ms
51,584 KB
testcase_33 AC 971 ms
51,584 KB
testcase_34 AC 972 ms
51,712 KB
testcase_35 AC 964 ms
51,712 KB
testcase_36 AC 972 ms
51,584 KB
testcase_37 AC 967 ms
51,584 KB
testcase_38 AC 971 ms
51,840 KB
testcase_39 AC 970 ms
51,584 KB
testcase_40 AC 970 ms
51,584 KB
testcase_41 AC 969 ms
51,584 KB
testcase_42 AC 972 ms
51,584 KB
testcase_43 AC 973 ms
51,840 KB
testcase_44 AC 981 ms
51,712 KB
testcase_45 AC 974 ms
51,584 KB
testcase_46 AC 974 ms
51,584 KB
testcase_47 AC 972 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import collections
import bisect
import itertools
import decimal

# import numpy as np

# sys.setrecursionlimit(10 ** 6)
INF = 10 ** 20
MOD = 10 ** 9 + 7
# MOD = 998244353

ni = lambda: int(sys.stdin.readline().rstrip())
ns = lambda: map(int, sys.stdin.readline().rstrip().split())
na = lambda: list(map(int, sys.stdin.readline().rstrip().split()))
na1 = lambda: list(map(lambda x: int(x) - 1, sys.stdin.readline().rstrip().split()))


# ===CODE===

def main():
    n, m = ns()
    mat = [na() for _ in range(n)]

    res = []
    for i in range(n):
        tmp = 0
        for j in range(m):
            tmp += mat[i][j]
        res.append(tmp)

    dp = [[0] * 2 for _ in range(n + 1)]

    ans = 0
    for i in range(n):
        for j in range(i + 1, n + 1):
            dp[j][0] = max(dp[j][0], dp[i][1] - res[j - 1])
            dp[j][1] = max(dp[j][1], dp[i][0] + res[j - 1])
            ans = max(ans, dp[j][0], dp[j][1])

    print(ans)


if __name__ == '__main__':
    main()
0