結果

問題 No.1199 お菓子配り-2
ユーザー iqueue02iqueue02
提出日時 2020-08-28 23:18:55
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 735 bytes
コンパイル時間 12,508 ms
コンパイル使用メモリ 258,068 KB
最終ジャッジ日時 2025-01-13 19:34:40
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 44 TLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef long double ld;
typedef pair<int,int> P;
constexpr ll INF = (1LL << 60);
int main(){ 
  int n, m;
  cin >> n >> m;
  vector<ll> a(n, 0);
  rep(i,n) {
    rep(j,m) {
      ll b;
      cin >> b;
      a[i] += b;
    }
  }
  
  vector<vector<ll>> dp(n + 1, vector<ll>(2, 0));
  ll res = 0;
  for (int i = 0; i < n; i++) {
    for (int j = 0; j <= i; j++) {
      dp[i + 1][0] = max(dp[i + 1][0], dp[j][1] + a[i]);
      dp[i + 1][1] = max(dp[i + 1][1], dp[j][0] - a[i]);
    }
    res = max(dp[i + 1][0], res);
    res = max(dp[i + 1][1], res);
  }

  cout << res << endl;
  return 0; 
} 
0