結果

問題 No.1199 お菓子配り-2
ユーザー Y17Y17
提出日時 2020-08-28 21:38:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 422 ms / 1,000 ms
コード長 700 bytes
コンパイル時間 1,672 ms
コンパイル使用メモリ 167,580 KB
実行使用メモリ 11,604 KB
最終ジャッジ日時 2024-11-14 03:03:26
合計ジャッジ時間 16,666 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 107 ms
9,024 KB
testcase_04 AC 264 ms
10,568 KB
testcase_05 AC 10 ms
6,820 KB
testcase_06 AC 16 ms
6,820 KB
testcase_07 AC 129 ms
7,360 KB
testcase_08 AC 177 ms
7,436 KB
testcase_09 AC 106 ms
8,096 KB
testcase_10 AC 28 ms
6,820 KB
testcase_11 AC 84 ms
6,900 KB
testcase_12 AC 82 ms
6,816 KB
testcase_13 AC 29 ms
6,816 KB
testcase_14 AC 24 ms
6,816 KB
testcase_15 AC 21 ms
6,816 KB
testcase_16 AC 171 ms
8,276 KB
testcase_17 AC 83 ms
7,908 KB
testcase_18 AC 180 ms
10,680 KB
testcase_19 AC 48 ms
7,684 KB
testcase_20 AC 322 ms
10,412 KB
testcase_21 AC 196 ms
11,364 KB
testcase_22 AC 105 ms
10,280 KB
testcase_23 AC 144 ms
10,596 KB
testcase_24 AC 199 ms
10,648 KB
testcase_25 AC 31 ms
6,816 KB
testcase_26 AC 222 ms
9,016 KB
testcase_27 AC 179 ms
7,080 KB
testcase_28 AC 420 ms
11,408 KB
testcase_29 AC 419 ms
11,384 KB
testcase_30 AC 418 ms
11,456 KB
testcase_31 AC 420 ms
11,420 KB
testcase_32 AC 421 ms
11,412 KB
testcase_33 AC 421 ms
11,472 KB
testcase_34 AC 417 ms
11,604 KB
testcase_35 AC 420 ms
11,504 KB
testcase_36 AC 419 ms
11,508 KB
testcase_37 AC 420 ms
11,252 KB
testcase_38 AC 420 ms
11,344 KB
testcase_39 AC 419 ms
11,472 KB
testcase_40 AC 418 ms
11,604 KB
testcase_41 AC 422 ms
11,384 KB
testcase_42 AC 419 ms
11,384 KB
testcase_43 AC 421 ms
11,356 KB
testcase_44 AC 421 ms
11,304 KB
testcase_45 AC 421 ms
11,388 KB
testcase_46 AC 420 ms
11,412 KB
testcase_47 AC 419 ms
11,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define int long long
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

int n, m;
int a[1010][1010];
int b[1010] = {};

int memo[1010][2];
int dp(int i, int x){
	if(i == n) return 0;
	if(memo[i][x] != -1) return memo[i][x];
	return memo[i][x] = max(dp(i+1, x), dp(i+1, x == 1 ? 0 : 1) + (x == 0 ? 1 : -1) * b[i] );
}

signed main(){
	cin >> n >> m;

	for(int i = 0;i < n;i++){
		for(int j = 0;j < m;j++){
			cin >> a[i][j];
			b[i] += a[i][j];
		}
	}

	memset(memo, -1, sizeof(memo));
	cout << dp(0, 0) << endl;

	return 0;
}
0