結果

問題 No.1199 お菓子配り-2
ユーザー AuroraAurora
提出日時 2021-09-12 12:34:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 426 ms / 1,000 ms
コード長 623 bytes
コンパイル時間 1,656 ms
コンパイル使用メモリ 171,656 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-06-24 00:49:42
合計ジャッジ時間 20,826 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 106 ms
5,632 KB
testcase_04 AC 268 ms
8,448 KB
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 130 ms
5,888 KB
testcase_08 AC 173 ms
6,656 KB
testcase_09 AC 106 ms
5,632 KB
testcase_10 AC 27 ms
5,376 KB
testcase_11 AC 83 ms
5,376 KB
testcase_12 AC 81 ms
5,376 KB
testcase_13 AC 29 ms
5,376 KB
testcase_14 AC 25 ms
5,376 KB
testcase_15 AC 21 ms
5,376 KB
testcase_16 AC 173 ms
6,784 KB
testcase_17 AC 83 ms
5,376 KB
testcase_18 AC 181 ms
6,784 KB
testcase_19 AC 47 ms
5,376 KB
testcase_20 AC 323 ms
9,472 KB
testcase_21 AC 199 ms
7,168 KB
testcase_22 AC 105 ms
5,504 KB
testcase_23 AC 145 ms
6,272 KB
testcase_24 AC 200 ms
7,296 KB
testcase_25 AC 31 ms
5,376 KB
testcase_26 AC 220 ms
7,680 KB
testcase_27 AC 179 ms
6,912 KB
testcase_28 AC 417 ms
11,264 KB
testcase_29 AC 415 ms
11,264 KB
testcase_30 AC 417 ms
11,392 KB
testcase_31 AC 422 ms
11,264 KB
testcase_32 AC 413 ms
11,392 KB
testcase_33 AC 425 ms
11,264 KB
testcase_34 AC 417 ms
11,392 KB
testcase_35 AC 425 ms
11,264 KB
testcase_36 AC 423 ms
11,520 KB
testcase_37 AC 417 ms
11,392 KB
testcase_38 AC 420 ms
11,392 KB
testcase_39 AC 420 ms
11,392 KB
testcase_40 AC 423 ms
11,392 KB
testcase_41 AC 419 ms
11,392 KB
testcase_42 AC 426 ms
11,392 KB
testcase_43 AC 426 ms
11,520 KB
testcase_44 AC 425 ms
11,392 KB
testcase_45 AC 422 ms
11,392 KB
testcase_46 AC 419 ms
11,392 KB
testcase_47 AC 421 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  int N,M;
  cin >> N >> M;
  vector<vector<long long int>> A(N,vector<long long int>(M));
  for(int i=0;i<N;i++) for(int j=0;j<M;j++) cin >> A[i][j];
  vector<vector<long long int>> dp(N+1,vector<long long int>(2,-1000000000000000000));
  dp[0][1] = 0;
  long long int ans = 0;
  for(int i=1;i<=N;i++){
    long long int S = 0;
    for(int j=0;j<M;j++) S += A[i-1][j];
    for(int j=0;j<i;j++) dp[i][0] = max(dp[i][0],dp[j][1]+S);
    for(int j=0;j<i;j++) dp[i][1] = max(dp[i][1],dp[j][0]-S);
    ans = max(ans,max(dp[i][0],dp[i][1]));
  }
  cout << ans << endl;
}
0