結果

問題 No.1199 お菓子配り-2
ユーザー souzai0302souzai0302
提出日時 2020-09-04 16:59:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 421 ms / 1,000 ms
コード長 758 bytes
コンパイル時間 1,537 ms
コンパイル使用メモリ 168,668 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-26 03:29:43
合計ジャッジ時間 19,892 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 111 ms
5,248 KB
testcase_04 AC 253 ms
5,248 KB
testcase_05 AC 8 ms
5,248 KB
testcase_06 AC 14 ms
5,248 KB
testcase_07 AC 118 ms
5,248 KB
testcase_08 AC 158 ms
5,248 KB
testcase_09 AC 95 ms
5,248 KB
testcase_10 AC 25 ms
5,248 KB
testcase_11 AC 76 ms
5,248 KB
testcase_12 AC 75 ms
5,248 KB
testcase_13 AC 25 ms
5,248 KB
testcase_14 AC 22 ms
5,248 KB
testcase_15 AC 19 ms
5,248 KB
testcase_16 AC 153 ms
5,248 KB
testcase_17 AC 71 ms
5,248 KB
testcase_18 AC 159 ms
5,248 KB
testcase_19 AC 45 ms
5,248 KB
testcase_20 AC 283 ms
5,248 KB
testcase_21 AC 180 ms
5,248 KB
testcase_22 AC 102 ms
5,248 KB
testcase_23 AC 132 ms
5,248 KB
testcase_24 AC 177 ms
5,248 KB
testcase_25 AC 28 ms
5,248 KB
testcase_26 AC 201 ms
5,248 KB
testcase_27 AC 166 ms
5,248 KB
testcase_28 AC 382 ms
5,248 KB
testcase_29 AC 382 ms
5,248 KB
testcase_30 AC 389 ms
5,248 KB
testcase_31 AC 373 ms
5,248 KB
testcase_32 AC 377 ms
5,248 KB
testcase_33 AC 381 ms
5,248 KB
testcase_34 AC 421 ms
5,248 KB
testcase_35 AC 416 ms
5,248 KB
testcase_36 AC 372 ms
5,248 KB
testcase_37 AC 376 ms
5,248 KB
testcase_38 AC 373 ms
5,248 KB
testcase_39 AC 374 ms
5,248 KB
testcase_40 AC 381 ms
5,248 KB
testcase_41 AC 380 ms
5,248 KB
testcase_42 AC 377 ms
5,248 KB
testcase_43 AC 370 ms
5,248 KB
testcase_44 AC 370 ms
5,248 KB
testcase_45 AC 377 ms
5,248 KB
testcase_46 AC 372 ms
5,248 KB
testcase_47 AC 376 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i,n) for(int i=0; i<(n); i++)
#define rep2(i,x,n) for(int i=x; i<(n); i++)
#define all(x) x.begin(),x.end()
typedef long long ll;
ll mod = 1000000007;
ll inf = 1e18;
int main(){

    int n,m;
    cin >> n >> m;
    vector<ll> a(n);
    ll aa;
    rep(i,n){
        rep(j,m){
            cin >> aa;
            a[i]+=aa;
        }
    }

    ll x=-1,y=-1;
    ll sum=0;
    rep(i,n-1){
        if(x==-1){
            if(a[i]>a[i+1]) x=a[i];
        }else{
            if(a[i]<a[i+1]) y=a[i];
        }
        if(y!=-1){
            sum+=x-y;
            x=-1;
            y=-1;
            // cout << sum << endl;
        }
    }
    sum+=max(x,a[n-1]);
    cout << sum << endl;
    
    return 0;
}
0