結果

問題 No.2854 -1 Subsequence
ユーザー hatsuka_iwahatsuka_iwa
提出日時 2024-08-25 16:27:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 205,892 KB
実行使用メモリ 14,240 KB
最終ジャッジ日時 2024-08-25 16:27:55
合計ジャッジ時間 5,440 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,184 KB
testcase_01 AC 74 ms
11,668 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 AC 43 ms
7,936 KB
testcase_04 AC 84 ms
13,064 KB
testcase_05 AC 55 ms
9,344 KB
testcase_06 AC 33 ms
6,940 KB
testcase_07 AC 86 ms
12,812 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 66 ms
9,984 KB
testcase_10 AC 98 ms
14,124 KB
testcase_11 AC 100 ms
14,116 KB
testcase_12 AC 99 ms
14,108 KB
testcase_13 AC 95 ms
14,184 KB
testcase_14 AC 98 ms
14,208 KB
testcase_15 AC 104 ms
14,104 KB
testcase_16 AC 97 ms
14,184 KB
testcase_17 AC 95 ms
14,188 KB
testcase_18 AC 98 ms
14,132 KB
testcase_19 AC 103 ms
14,144 KB
testcase_20 AC 98 ms
14,128 KB
testcase_21 WA -
testcase_22 AC 103 ms
14,148 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 1 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int N, Min = 1e9; cin >> N;
  bool B = true;
  vector DP(N + 1, vector<long long>(2, -1e18));
  DP.at(0).at(0) = 0;
  for (int i = 0; i < N; i++) {
    int A; cin >> A;
    if (A < 0) B = false;
    else Min = min(Min, A);
    DP.at(i + 1).at(1) = max(DP.at(i).at(1), DP.at(i).at(0) + A * -1);
    DP.at(i + 1).at(0) = max(DP.at(i).at(0), DP.at(i).at(1) + A);
  }
  cout << (B ? (long long)-Min : max(DP.at(N).at(0), DP.at(N).at(1))) << endl;
}
0