結果

問題 No.1199 お菓子配り-2
ユーザー zuminzumin
提出日時 2021-02-26 00:21:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 429 ms / 1,000 ms
コード長 750 bytes
コンパイル時間 804 ms
コンパイル使用メモリ 73,472 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-10-01 15:05:01
合計ジャッジ時間 20,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 126 ms
6,016 KB
testcase_04 AC 300 ms
9,984 KB
testcase_05 AC 10 ms
5,248 KB
testcase_06 AC 15 ms
5,248 KB
testcase_07 AC 127 ms
5,248 KB
testcase_08 AC 175 ms
5,248 KB
testcase_09 AC 106 ms
5,248 KB
testcase_10 AC 27 ms
5,248 KB
testcase_11 AC 82 ms
5,248 KB
testcase_12 AC 83 ms
5,248 KB
testcase_13 AC 29 ms
5,248 KB
testcase_14 AC 25 ms
5,248 KB
testcase_15 AC 20 ms
5,248 KB
testcase_16 AC 187 ms
5,248 KB
testcase_17 AC 95 ms
5,376 KB
testcase_18 AC 190 ms
10,112 KB
testcase_19 AC 48 ms
5,248 KB
testcase_20 AC 323 ms
9,472 KB
testcase_21 AC 203 ms
11,136 KB
testcase_22 AC 107 ms
9,216 KB
testcase_23 AC 149 ms
9,728 KB
testcase_24 AC 200 ms
9,984 KB
testcase_25 AC 31 ms
5,248 KB
testcase_26 AC 224 ms
6,272 KB
testcase_27 AC 179 ms
5,248 KB
testcase_28 AC 422 ms
11,264 KB
testcase_29 AC 423 ms
11,392 KB
testcase_30 AC 425 ms
11,392 KB
testcase_31 AC 426 ms
11,520 KB
testcase_32 AC 422 ms
11,392 KB
testcase_33 AC 423 ms
11,392 KB
testcase_34 AC 423 ms
11,392 KB
testcase_35 AC 421 ms
11,392 KB
testcase_36 AC 423 ms
11,392 KB
testcase_37 AC 422 ms
11,392 KB
testcase_38 AC 426 ms
11,264 KB
testcase_39 AC 425 ms
11,392 KB
testcase_40 AC 428 ms
11,392 KB
testcase_41 AC 422 ms
11,392 KB
testcase_42 AC 429 ms
11,392 KB
testcase_43 AC 423 ms
11,392 KB
testcase_44 AC 423 ms
11,392 KB
testcase_45 AC 421 ms
11,392 KB
testcase_46 AC 422 ms
11,392 KB
testcase_47 AC 429 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;
using ll=long long;

int main(){
    int n,m;
    cin>>n>>m;
    vector<ll> a;
    vector<vector<ll>> dp(n+1,vector<ll>(n+1,-1e15));
    ll ans=-1e15;
    dp[0][0]=0;



    for(int i=0;i<n;i++){
        ll cur=0;
        for(int j=0;j<m;j++){
            ll tmp;
            cin>>tmp;
            cur+=tmp;
        }
        a.push_back(cur);
    }

    for(int i=0;i<n;i++){
        dp[i+1][0]=0;
        for(int j=1;j<=n;j++){
            if(j%2){
                dp[i+1][j]=max(dp[i][j],dp[i][j-1]+a[i]);
            }else{
                dp[i+1][j]=max(dp[i][j],dp[i][j-1]-a[i]);
            }
            ans=max(ans,dp[i+1][j]);
        }
    }
    cout<<ans<<endl;

    return 0;
}
0