結果

問題 No.1199 お菓子配り-2
ユーザー mmn15277198mmn15277198
提出日時 2021-02-08 16:54:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 423 ms / 1,000 ms
コード長 644 bytes
コンパイル時間 734 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 18:57:35
合計ジャッジ時間 16,235 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 101 ms
5,376 KB
testcase_04 AC 259 ms
5,376 KB
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 15 ms
5,376 KB
testcase_07 AC 122 ms
5,376 KB
testcase_08 AC 161 ms
5,376 KB
testcase_09 AC 103 ms
5,376 KB
testcase_10 AC 27 ms
5,376 KB
testcase_11 AC 83 ms
5,376 KB
testcase_12 AC 77 ms
5,376 KB
testcase_13 AC 27 ms
5,376 KB
testcase_14 AC 24 ms
5,376 KB
testcase_15 AC 20 ms
5,376 KB
testcase_16 AC 156 ms
5,376 KB
testcase_17 AC 75 ms
5,376 KB
testcase_18 AC 159 ms
5,376 KB
testcase_19 AC 47 ms
5,376 KB
testcase_20 AC 286 ms
5,376 KB
testcase_21 AC 179 ms
5,376 KB
testcase_22 AC 94 ms
5,376 KB
testcase_23 AC 138 ms
5,376 KB
testcase_24 AC 192 ms
5,376 KB
testcase_25 AC 29 ms
5,376 KB
testcase_26 AC 200 ms
5,376 KB
testcase_27 AC 166 ms
5,376 KB
testcase_28 AC 384 ms
5,376 KB
testcase_29 AC 366 ms
5,376 KB
testcase_30 AC 369 ms
5,376 KB
testcase_31 AC 367 ms
5,376 KB
testcase_32 AC 369 ms
5,376 KB
testcase_33 AC 371 ms
5,376 KB
testcase_34 AC 368 ms
5,376 KB
testcase_35 AC 366 ms
5,376 KB
testcase_36 AC 365 ms
5,376 KB
testcase_37 AC 388 ms
5,376 KB
testcase_38 AC 391 ms
5,376 KB
testcase_39 AC 423 ms
5,376 KB
testcase_40 AC 394 ms
5,376 KB
testcase_41 AC 364 ms
5,376 KB
testcase_42 AC 366 ms
5,376 KB
testcase_43 AC 370 ms
5,376 KB
testcase_44 AC 363 ms
5,376 KB
testcase_45 AC 419 ms
5,376 KB
testcase_46 AC 367 ms
5,376 KB
testcase_47 AC 364 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using ll = long long;
const int INF = 100100100;

int main(){
    int n , m;
    cin >> n >> m;
    vector<ll> a(n + 1 , 0);
    for(int i = 1; i <= n; i++){
        for(int j = 0; j < m; j++){
            ll now;
            cin >> now;
            a[i] += now;
        }
    }
    vector<vector<ll>> dp(n + 10 , vector<ll>(2 , 0));
    for(int i = 1; i <= n; i++){
        dp[i][1] = max({dp[i - 1][1] , dp[i - 1][0] + a[i] , a[i]});
        dp[i][0] = max(dp[i - 1][0] , dp[i - 1][1] - a[i]);
    }
    cout << max(dp[n][1] , dp[n][0]) << endl;
    return 0;
}
0