結果

問題 No.1199 お菓子配り-2
ユーザー mkawa2mkawa2
提出日時 2021-07-16 09:22:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 328 ms / 1,000 ms
コード長 1,075 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,200 KB
最終ジャッジ日時 2024-07-05 18:01:27
合計ジャッジ時間 16,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 100 ms
20,608 KB
testcase_04 AC 242 ms
36,608 KB
testcase_05 AC 40 ms
11,648 KB
testcase_06 AC 34 ms
12,032 KB
testcase_07 AC 113 ms
22,912 KB
testcase_08 AC 143 ms
27,520 KB
testcase_09 AC 98 ms
20,992 KB
testcase_10 AC 43 ms
13,312 KB
testcase_11 AC 79 ms
18,816 KB
testcase_12 AC 78 ms
18,304 KB
testcase_13 AC 43 ms
13,312 KB
testcase_14 AC 41 ms
13,184 KB
testcase_15 AC 38 ms
12,416 KB
testcase_16 AC 140 ms
27,008 KB
testcase_17 AC 81 ms
18,432 KB
testcase_18 AC 156 ms
28,544 KB
testcase_19 AC 57 ms
15,104 KB
testcase_20 AC 250 ms
41,600 KB
testcase_21 AC 170 ms
30,080 KB
testcase_22 AC 114 ms
20,608 KB
testcase_23 AC 130 ms
24,832 KB
testcase_24 AC 171 ms
30,464 KB
testcase_25 AC 45 ms
13,440 KB
testcase_26 AC 183 ms
32,384 KB
testcase_27 AC 149 ms
28,416 KB
testcase_28 AC 323 ms
51,072 KB
testcase_29 AC 325 ms
51,072 KB
testcase_30 AC 324 ms
50,944 KB
testcase_31 AC 325 ms
51,200 KB
testcase_32 AC 327 ms
51,072 KB
testcase_33 AC 328 ms
51,072 KB
testcase_34 AC 323 ms
50,944 KB
testcase_35 AC 325 ms
51,200 KB
testcase_36 AC 323 ms
51,072 KB
testcase_37 AC 325 ms
51,072 KB
testcase_38 AC 325 ms
51,200 KB
testcase_39 AC 327 ms
51,072 KB
testcase_40 AC 323 ms
51,072 KB
testcase_41 AC 326 ms
51,072 KB
testcase_42 AC 324 ms
51,072 KB
testcase_43 AC 323 ms
51,072 KB
testcase_44 AC 325 ms
51,200 KB
testcase_45 AC 323 ms
50,944 KB
testcase_46 AC 324 ms
51,072 KB
testcase_47 AC 326 ms
50,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
md = 998244353
# md = 10**9+7

n, m = LI()
aa = LLI(n)
ss = []
for row in aa:
    ss.append(sum(row))

def chmax(i, j, val):
    if val > dp[i][j]: dp[i][j] = val

dp = [[-inf]*2 for _ in range(n+1)]
dp[0][1] = 0
for i in range(n):
    for j in range(2):
        pre = dp[i][j]
        if pre==-inf:continue
        if j:
            chmax(i+1, 0, pre+ss[i])
            chmax(i+1, 1, pre)
        else:
            chmax(i+1, 1, pre-ss[i])
            chmax(i+1, 0, pre)

print(max(dp[-1]))
0