結果

問題 No.1199 お菓子配り-2
ユーザー YamaKasaYamaKasa
提出日時 2020-09-22 17:08:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 426 ms / 1,000 ms
コード長 551 bytes
コンパイル時間 1,693 ms
コンパイル使用メモリ 166,980 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-26 06:47:25
合計ジャッジ時間 20,052 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 106 ms
5,376 KB
testcase_04 AC 267 ms
8,192 KB
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 130 ms
5,888 KB
testcase_08 AC 178 ms
6,656 KB
testcase_09 AC 117 ms
5,376 KB
testcase_10 AC 28 ms
5,376 KB
testcase_11 AC 83 ms
5,376 KB
testcase_12 AC 81 ms
5,376 KB
testcase_13 AC 29 ms
5,376 KB
testcase_14 AC 24 ms
5,376 KB
testcase_15 AC 20 ms
5,376 KB
testcase_16 AC 173 ms
6,528 KB
testcase_17 AC 83 ms
5,376 KB
testcase_18 AC 181 ms
6,656 KB
testcase_19 AC 47 ms
5,376 KB
testcase_20 AC 323 ms
9,344 KB
testcase_21 AC 197 ms
7,168 KB
testcase_22 AC 105 ms
5,376 KB
testcase_23 AC 145 ms
6,016 KB
testcase_24 AC 199 ms
7,040 KB
testcase_25 AC 31 ms
5,376 KB
testcase_26 AC 225 ms
7,552 KB
testcase_27 AC 185 ms
6,784 KB
testcase_28 AC 421 ms
11,136 KB
testcase_29 AC 424 ms
11,264 KB
testcase_30 AC 424 ms
11,136 KB
testcase_31 AC 425 ms
11,136 KB
testcase_32 AC 424 ms
11,136 KB
testcase_33 AC 423 ms
11,264 KB
testcase_34 AC 423 ms
11,136 KB
testcase_35 AC 424 ms
11,264 KB
testcase_36 AC 424 ms
11,136 KB
testcase_37 AC 422 ms
11,264 KB
testcase_38 AC 425 ms
11,264 KB
testcase_39 AC 424 ms
11,264 KB
testcase_40 AC 423 ms
11,136 KB
testcase_41 AC 424 ms
11,136 KB
testcase_42 AC 424 ms
11,264 KB
testcase_43 AC 426 ms
11,264 KB
testcase_44 AC 425 ms
11,136 KB
testcase_45 AC 422 ms
11,136 KB
testcase_46 AC 418 ms
11,136 KB
testcase_47 AC 424 ms
11,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:17:18: warning: '*b[0]' may be used uninitialized [-Wmaybe-uninitialized]
   17 |     d[0][0] = b[0];
      |               ~~~^

ソースコード

diff #

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

int main() {
    int N, M;
    cin >> N >> M;
    ll A[N][M];
    ll b[N]{};
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < M; j++) {
            cin >> A[i][j];
            b[i] += A[i][j];
        }
    }
    ll d[N][2]{};
    d[0][0] = b[0];
    for (int i = 0; i < N - 1; i++) {
        d[i + 1][0] = max(d[i][1] + b[i + 1], d[i][0]);
        d[i + 1][1] = max(d[i][1], d[i][0] - b[i + 1]);
    }
    cout << max(d[N - 1][0], d[N - 1][1]) << "\n";
    return 0;
}
0