結果
問題 | No.1199 お菓子配り-2 |
ユーザー | misora192 |
提出日時 | 2020-08-28 21:49:46 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 122 ms / 1,000 ms |
コード長 | 856 bytes |
コンパイル時間 | 1,678 ms |
コンパイル使用メモリ | 171,540 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-11-14 03:20:14 |
合計ジャッジ時間 | 8,632 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 45 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=(0);i<(n);i++) using namespace std; typedef long long ll; 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 (a>b) { a=b; return 1; } return 0; } int main(){ cin.tie(0); ios::sync_with_stdio(false); int n, m; cin >> n >> m; vector<vector<ll>> a(n, vector<ll>(m, 0)); rep(i, n) rep(j, m) cin >> a[i][j]; vector<ll> b(n, 0); rep(i, n) rep(j, m) b[i] += a[i][j]; ll INF = 1e17; vector<vector<ll>> dp(n+1, vector<ll>(2, -INF)); dp[0][0] = 0; rep(i, n){ if(dp[i][0] != INF){ chmax(dp[i+1][0], dp[i][0]); chmax(dp[i+1][1], dp[i][0] + b[i]); } if(dp[i][1] != INF){ chmax(dp[i+1][0], dp[i][1] - b[i]); chmax(dp[i+1][1], dp[i][1]); } } cout << max(dp[n][0], dp[n][1]) << endl; }