結果

問題 No.1199 お菓子配り-2
ユーザー souzai0302souzai0302
提出日時 2020-09-04 16:59:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 377 ms / 1,000 ms
コード長 758 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 168,588 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 15:16:53
合計ジャッジ時間 19,791 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 101 ms
5,376 KB
testcase_04 AC 229 ms
5,376 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 AC 13 ms
5,376 KB
testcase_07 AC 111 ms
5,376 KB
testcase_08 AC 153 ms
5,376 KB
testcase_09 AC 94 ms
5,376 KB
testcase_10 AC 24 ms
5,376 KB
testcase_11 AC 72 ms
5,376 KB
testcase_12 AC 70 ms
5,376 KB
testcase_13 AC 25 ms
5,376 KB
testcase_14 AC 21 ms
5,376 KB
testcase_15 AC 18 ms
5,376 KB
testcase_16 AC 151 ms
5,376 KB
testcase_17 AC 71 ms
5,376 KB
testcase_18 AC 164 ms
5,376 KB
testcase_19 AC 43 ms
5,376 KB
testcase_20 AC 295 ms
5,376 KB
testcase_21 AC 178 ms
5,376 KB
testcase_22 AC 91 ms
5,376 KB
testcase_23 AC 125 ms
5,376 KB
testcase_24 AC 172 ms
5,376 KB
testcase_25 AC 27 ms
5,376 KB
testcase_26 AC 197 ms
5,376 KB
testcase_27 AC 163 ms
5,376 KB
testcase_28 AC 368 ms
5,376 KB
testcase_29 AC 372 ms
5,376 KB
testcase_30 AC 367 ms
5,376 KB
testcase_31 AC 365 ms
5,376 KB
testcase_32 AC 365 ms
5,376 KB
testcase_33 AC 371 ms
5,376 KB
testcase_34 AC 368 ms
5,376 KB
testcase_35 AC 377 ms
5,376 KB
testcase_36 AC 370 ms
5,376 KB
testcase_37 AC 372 ms
5,376 KB
testcase_38 AC 377 ms
5,376 KB
testcase_39 AC 370 ms
5,376 KB
testcase_40 AC 369 ms
5,376 KB
testcase_41 AC 371 ms
5,376 KB
testcase_42 AC 372 ms
5,376 KB
testcase_43 AC 374 ms
5,376 KB
testcase_44 AC 367 ms
5,376 KB
testcase_45 AC 368 ms
5,376 KB
testcase_46 AC 365 ms
5,376 KB
testcase_47 AC 368 ms
5,376 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